IRP

Read dataset

source("00_dataset.R")

head(trainingSet)
##   outcome    Height Temperature Smoking.0 Smoking.1 `KPS score`90 `KPS score`70
## 1    zero 0.6428571       0.075         0         1             0             0
## 2    zero 0.5238095       0.150         0         1             0             1
## 3    zero 0.8095238       0.100         0         1             0             0
## 4    zero 0.6190476       0.200         0         1             0             0
## 5    zero 0.7619048       0.225         0         1             0             0
## 6    zero 0.0000000       0.200         1         0             0             0
##   `KPS score`80 `Number of underlying diseases`0
## 1             1                                0
## 2             0                                0
## 3             1                                0
## 4             1                                0
## 5             1                                0
## 6             1                                0
##   `Number of underlying diseases`1 `Number of underlying diseases`2
## 1                                0                                1
## 2                                1                                0
## 3                                1                                0
## 4                                0                                1
## 5                                1                                0
## 6                                0                                1
##   `Previous lung disease`0 `Previous lung disease`1 `ICIs drugs`1 `ICIs drugs`2
## 1                        1                        0             0             0
## 2                        1                        0             0             1
## 3                        0                        1             0             1
## 4                        0                        1             0             0
## 5                        1                        0             0             1
## 6                        0                        1             0             0
##   `ICIs drugs`3 `ICIs drugs`4 `ICIs drugs`5 `ICIs drugs`6 `ICIs drugs`7
## 1             0             0             0             0             1
## 2             0             0             0             0             0
## 3             0             0             0             0             0
## 4             0             1             0             0             0
## 5             0             0             0             0             0
## 6             0             0             0             0             1
##   `ICIs drugs`8 `ICIs dosage`1 `ICIs dosage`2 `Course of treatment`
## 1             0              1              0               0.03125
## 2             0              1              0               0.00000
## 3             0              1              0               0.37500
## 4             0              0              1               0.12500
## 5             0              1              0               0.00000
## 6             0              1              0               0.03125
##   `Number of combined antitumor drugs`0 `Number of combined antitumor drugs`1
## 1                                     0                                     1
## 2                                     0                                     1
## 3                                     0                                     1
## 4                                     0                                     1
## 5                                     0                                     1
## 6                                     1                                     0
##   `Number of combined drugs`0 `Number of combined drugs`1
## 1                           1                           0
## 2                           0                           1
## 3                           1                           0
## 4                           1                           0
## 5                           1                           0
## 6                           0                           1
##   `Previous treatment_yn`0 `Previous treatment_yn`1
## 1                        0                        1
## 2                        0                        1
## 3                        0                        1
## 4                        1                        0
## 5                        0                        1
## 6                        0                        1
##   `Number of previous treatment drugs`0 `Number of previous treatment drugs`1
## 1                                     0                                     1
## 2                                     0                                     1
## 3                                     0                                     1
## 4                                     1                                     0
## 5                                     0                                     1
## 6                                     0                                     1
##   `Percentage of CD4 lymphocytes` `Percentage of NK cell`
## 1                       0.4529781               0.3744186
## 2                       0.4130094               0.2139535
## 3                       0.2115987               0.3627907
## 4                       0.4028213               0.1279070
## 5                       0.1927900               0.8139535
## 6                       0.4130094               0.2930233
##   `Percentage of  T lymphocytes` `Percentage of eosinophilus cells`
## 1                      0.4557143                         0.13793103
## 2                      0.6471429                         0.15862069
## 3                      0.6842857                         0.08965517
## 4                      0.8842857                         0.15862069
## 5                      0.1300000                         0.16551724
## 6                      0.6471429                         0.08965517
##   `Percentage of neutrophilic granulocyte`
## 1                                0.7089744
## 2                                0.9243590
## 3                                0.5076923
## 4                                0.6500000
## 5                                0.6551282
## 6                                0.7384615

Feature selection

Feature selection (Recursive Feature Elimination)

set.seed(355)

rfFuncs$summary <- BigSummary

objectives =  "SBrier" 
  
  'auc_ap_sbr' 
## [1] "auc_ap_sbr"
x_tmp = trainingSet[,c(2:ncol(trainingSet))]

y_tmp = trainingSet[,1]

rfProfile <- rfe(x_tmp,y_tmp, sizes=c(1:ncol(trainingSet)), rfeControl=rfeControl(rfFuncs,method = "repeatedcv",
                   repeats = 10,
                   number = 3),
                 metric=objectives)

viz feature selection output

trellis.par.set(caretTheme())
plot(rfProfile, type = c("g", "o"))

predictors(rfProfile) 
##  [1] "`ICIs drugs`7"                           
##  [2] "`Number of underlying diseases`2"        
##  [3] "`ICIs drugs`8"                           
##  [4] "`Percentage of NK cell`"                 
##  [5] "`Number of underlying diseases`0"        
##  [6] "`Previous lung disease`0"                
##  [7] "`Previous lung disease`1"                
##  [8] "`ICIs drugs`5"                           
##  [9] "Temperature"                             
## [10] "`ICIs drugs`3"                           
## [11] "`ICIs drugs`2"                           
## [12] "`Percentage of neutrophilic granulocyte`"

Tuning

Tune and build model

twoClassCtrl <- trainControl(
  method = "repeatedcv",
  number = 3,
  repeats = 10, #for repeatedcv
  savePredictions = "final",
  classProbs = T,
  summaryFunction = BigSummary, 
  sampling = "up"
)

set.seed(355)
glmnet_m <- train(outcome ~., data = trainingSet1, method = "glmnet",  metric = objectives,  trControl = twoClassCtrl, tuneLength = 20)

rf_m <- train(outcome ~., data = trainingSet1, method = "rf",  metric = objectives,  trControl = twoClassCtrl, tuneLength = 10)

xgb_m <- train(outcome ~., data = trainingSet1, method = "xgbTree",  metric = objectives,  trControl = twoClassCtrl)
## [17:50:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:50:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [17:51:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.

PPV

glm_cat_test <- pred_cat_f(model_m = glmnet_m,model_name='ElasticNet',
                           testdat=testSet1,data_type = 'Test')%>% data.frame()

rf_cat_test <- pred_cat_f(model_m = rf_m,model_name='RF',testdat=testSet1,data_type = 'Test')%>% data.frame()

xgb_cat_test <- pred_cat_f(model_m = xgb_m,model_name='XGBoost',testdat=testSet1,data_type = 'Test')%>% data.frame()


glm_cat_val <- pred_cat_f(model_m = glmnet_m,model_name='ElasticNet',testdat=testSet1,data_type = 'Validation')%>% data.frame()

rf_cat_val <- pred_cat_f(model_m = rf_m,model_name='RF',testdat=testSet1,data_type = 'Validation')%>% data.frame()

xgb_cat_val <- pred_cat_f(model_m = xgb_m,model_name='XGBoost',testdat=testSet1,data_type = 'Validation')%>% data.frame()


cat_sum <- rbind(glm_cat_test,rf_cat_test,xgb_cat_test,
      glm_cat_val,rf_cat_val,xgb_cat_val
      )


DT::datatable(cat_sum,
              filter = "top", editable = "cell", extensions = "Buttons",
              options = list(
                dom = "Blfrtip",
                scrollX = TRUE,
                buttons = c("copy", "csv", "excel", "pdf", "print"),
                lengthMenu = list(
                  c(5, 25, 50, 100, -1),
                  c(5, 25, 50, 100, "All")
                )
              )
)

Evaluation

metrics

glm_perf <- sum_perf_f(glmnet_m, testdat=testSet1,model_name='ElasticNet') %>% data.frame()

rf_perf <- sum_perf_f(rf_m, testdat=testSet1,model_name='RF') %>% data.frame()

xgb_perf <- sum_perf_f(xgb_m, testdat=testSet1,model_name='XGBoost') %>% data.frame()

metrics_res <- rbind(glm_perf,rf_perf,xgb_perf)

# colnames(metrics_res) <- c('data_type','model_name','Acc','Kappa','AUCPROC','AUCPR','SBrier','Brier','Precision','Recall','F','auc_ap_sbr','s_z','s_p')

DT::datatable(metrics_res,
              filter = "top", editable = "cell", extensions = "Buttons",
              options = list(
                dom = "Blfrtip",
                scrollX = TRUE,
                buttons = c("copy", "csv", "excel", "pdf", "print"),
                lengthMenu = list(
                  c(5, 25, 50, 100, -1),
                  c(5, 25, 50, 100, "All")
                )
              )
)

viz perf

ROC

roc_glmnet <- roc_f(model_m=glmnet_m,testdat=testSet1)
roc_rf <- roc_f(model_m=rf_m,testdat=testSet1)
roc_xgb <- roc_f(model_m=xgb_m,testdat=testSet1)

g_roc_train <- ggroc(list(ElasticNet=roc_glmnet[[1]], RF=roc_rf[[1]], XGBoost = roc_xgb[[1]]), size = 1,legacy.axes=TRUE)+
  geom_segment(aes(x = 0, xend = 1, y = 0, yend = 1), color="darkgrey", linetype="dashed")+
  theme_minimal()
g_roc_test <- ggroc(list(ElasticNet=roc_glmnet[[2]], RF=roc_rf[[2]], XGBoost = roc_xgb[[2]]), size = 1,legacy.axes=TRUE)+
  geom_segment(aes(x = 0, xend = 1, y = 0, yend = 1), color="darkgrey", linetype="dashed")+
  theme_minimal()

g_roc_train

g_roc_test

Calibration plot

cali_plot_f(model_m=glmnet_m,model_name='ElasticNet',testdat=testSet1)

cali_plot_f(model_m=rf_m,model_name='RF',testdat=testSet1)

cali_plot_f(model_m=xgb_m,model_name='XGBoost',testdat=testSet1)

Feature importance

glm_vip <- vip_f(glmnet_m,model_name = 'ElasticNet')
rf_vip <- vip_f(rf_m,model_name = 'RF')
xgb_vip <- vip_f(xgb_m,model_name = 'XGBoost')
vip_sum <- rbind(glm_vip,rf_vip,xgb_vip)

DT::datatable(vip_sum,
              filter = "top", editable = "cell", extensions = "Buttons",
              options = list(
                dom = "Blfrtip",
                scrollX = TRUE,
                buttons = c("copy", "csv", "excel", "pdf", "print"),
                lengthMenu = list(
                  c(5, 25, 50, 100, -1),
                  c(5, 25, 50, 100, "All")
                )
              )
)

SHAP

# ks_glm <- kernelshap(glmnet_m, trainingSet1[,-1],
#                    bg_X = trainingSet1,
#                    type="prob")

ks_glm1 <- ks_glm$S[[1]]

ks_glm2 <- ks_glm$S[[2]]

sv_importance(shapviz(ks_glm1,trainingSet1[,-1]), "bee")

sv_importance(shapviz(ks_glm2,trainingSet1[,-1]), "bee")

ks_rf1 <- ks_rf$S[[1]]

ks_rf2 <- ks_rf$S[[2]]

sv_importance(shapviz(ks_rf1,trainingSet1[,-1]), "bee")

sv_importance(shapviz(ks_rf2,trainingSet1[,-1]), "bee")

ks_xgb1 <- ks_xgb$S[[1]]

ks_xgb2 <- ks_xgb$S[[2]]

sv_importance(shapviz(ks_xgb1,trainingSet1[,-1]), "bee")

sv_importance(shapviz(ks_xgb2,trainingSet1[,-1]), "bee")

saveRDS(rf_m, "rf_m.rds")

saveRDS(glmnet_m, "glmnet_m.rds")


saveRDS(xgb_m, "xgb_m.rds")

backup

glmnet

## train and test
viz_perf_f(model_m=glmnet_m,
           testdat=testSet1,
           bin_num=10)

## [[1]]
## [[1]]$roc

## 
## [[1]]$proc

## 
## [[1]]$prg

## 
## [[1]]$cc

## 
## [[1]]$probs
## [[1]]$probs$Group1
##              one        zero  obs  Group  TP   TN   FP  FN        SENS
## 199  0.990990053 0.009009947  one Group1   1 1140    0 389 0.002564103
## 353  0.985071975 0.014928025  one Group1   2 1140    0 388 0.005128205
## 299  0.964297684 0.035702316  one Group1   3 1140    0 387 0.007692308
## 482  0.963178809 0.036821191  one Group1   4 1140    0 386 0.010256410
## 432  0.960234493 0.039765507  one Group1   5 1140    0 385 0.012820513
## 50   0.955054208 0.044945792 zero Group1   5 1139    1 385 0.012820513
## 246  0.948084337 0.051915663  one Group1   6 1139    1 384 0.015384615
## 1201 0.946541946 0.053458054  one Group1   7 1139    1 383 0.017948718
## 1037 0.946355258 0.053644742  one Group1   8 1139    1 382 0.020512821
## 1502 0.943853862 0.056146138  one Group1   9 1139    1 381 0.023076923
## 794  0.934672712 0.065327288 zero Group1   9 1138    2 381 0.023076923
## 153  0.930537245 0.069462755  one Group1  10 1138    2 380 0.025641026
## 90   0.927226971 0.072773029  one Group1  11 1138    2 379 0.028205128
## 998  0.924643128 0.075356872  one Group1  12 1138    2 378 0.030769231
## 400  0.917783663 0.082216337  one Group1  13 1138    2 377 0.033333333
## 135  0.916577676 0.083422324  one Group1  14 1138    2 376 0.035897436
## 1092 0.912966131 0.087033869  one Group1  15 1138    2 375 0.038461538
## 349  0.912119243 0.087880757  one Group1  16 1138    2 374 0.041025641
## 871  0.910516719 0.089483281 zero Group1  16 1137    3 374 0.041025641
## 784  0.908133596 0.091866404  one Group1  17 1137    3 373 0.043589744
## 395  0.907173778 0.092826222  one Group1  18 1137    3 372 0.046153846
## 1408 0.907166293 0.092833707  one Group1  19 1137    3 371 0.048717949
## 783  0.906304819 0.093695181  one Group1  20 1137    3 370 0.051282051
## 788  0.905629963 0.094370037  one Group1  21 1137    3 369 0.053846154
## 870  0.902636408 0.097363592 zero Group1  21 1136    4 369 0.053846154
## 49   0.901284327 0.098715673  one Group1  22 1136    4 368 0.056410256
## 388  0.899983492 0.100016508  one Group1  23 1136    4 367 0.058974359
## 868  0.898830500 0.101169500 zero Group1  23 1135    5 367 0.058974359
## 725  0.896874057 0.103125943 zero Group1  23 1134    6 367 0.058974359
## 384  0.896349625 0.103650375  one Group1  24 1134    6 366 0.061538462
## 307  0.896148059 0.103851941 zero Group1  24 1133    7 366 0.061538462
## 601  0.895979073 0.104020927 zero Group1  24 1132    8 366 0.061538462
## 793  0.895602083 0.104397917  one Group1  25 1132    8 365 0.064102564
## 1414 0.892535653 0.107464347  one Group1  26 1132    8 364 0.066666667
## 1307 0.888341417 0.111658583  one Group1  27 1132    8 363 0.069230769
## 24   0.888282118 0.111717882  one Group1  28 1132    8 362 0.071794872
## 512  0.886194794 0.113805206 zero Group1  28 1131    9 362 0.071794872
## 959  0.885979451 0.114020549 zero Group1  28 1130   10 362 0.071794872
## 151  0.882691601 0.117308399  one Group1  29 1130   10 361 0.074358974
## 318  0.881568762 0.118431238  one Group1  30 1130   10 360 0.076923077
## 130  0.880225433 0.119774567  one Group1  31 1130   10 359 0.079487179
## 148  0.879500758 0.120499242  one Group1  32 1130   10 358 0.082051282
## 431  0.879366509 0.120633491  one Group1  33 1130   10 357 0.084615385
## 1413 0.878617869 0.121382131  one Group1  34 1130   10 356 0.087179487
## 179  0.877791987 0.122208013  one Group1  35 1130   10 355 0.089743590
## 128  0.876348673 0.123651327  one Group1  36 1130   10 354 0.092307692
## 1016 0.872956641 0.127043359 zero Group1  36 1129   11 354 0.092307692
## 435  0.872821375 0.127178625  one Group1  37 1129   11 353 0.094871795
## 1035 0.872533549 0.127466451  one Group1  38 1129   11 352 0.097435897
## 1308 0.872429418 0.127570582  one Group1  39 1129   11 351 0.100000000
## 1305 0.872299152 0.127700848  one Group1  40 1129   11 350 0.102564103
## 1304 0.872077282 0.127922718  one Group1  41 1129   11 349 0.105128205
## 245  0.871747397 0.128252603  one Group1  42 1129   11 348 0.107692308
## 1086 0.868613165 0.131386835  one Group1  43 1129   11 347 0.110256410
## 374  0.868541996 0.131458004  one Group1  44 1129   11 346 0.112820513
## 1090 0.865399304 0.134600696  one Group1  45 1129   11 345 0.115384615
## 1501 0.864467785 0.135532215  one Group1  46 1129   11 344 0.117948718
## 907  0.863957198 0.136042802 zero Group1  46 1128   12 344 0.117948718
## 1071 0.862896259 0.137103741 zero Group1  46 1127   13 344 0.117948718
## 978  0.862751137 0.137248863 zero Group1  46 1126   14 344 0.117948718
## 977  0.862625683 0.137374317 zero Group1  46 1125   15 344 0.117948718
## 46   0.859705085 0.140294915  one Group1  47 1125   15 343 0.120512821
## 1384 0.859588179 0.140411821 zero Group1  47 1124   16 343 0.120512821
## 479  0.859460234 0.140539766  one Group1  48 1124   16 342 0.123076923
## 186  0.858696315 0.141303685  one Group1  49 1124   16 341 0.125641026
## 1383 0.858591507 0.141408493 zero Group1  49 1123   17 341 0.125641026
## 1087 0.857313271 0.142686729  one Group1  50 1123   17 340 0.128205128
## 54   0.857085363 0.142914637 zero Group1  50 1122   18 340 0.128205128
## 65   0.855497992 0.144502008  one Group1  51 1122   18 339 0.130769231
## 483  0.855418842 0.144581158  one Group1  52 1122   18 338 0.133333333
## 1070 0.855309389 0.144690611 zero Group1  52 1121   19 338 0.133333333
## 308  0.855175866 0.144824134 zero Group1  52 1120   20 338 0.133333333
## 185  0.854740527 0.145259473  one Group1  53 1120   20 337 0.135897436
## 1091 0.853392702 0.146607298  one Group1  54 1120   20 336 0.138461538
## 77   0.853235688 0.146764312  one Group1  55 1120   20 335 0.141025641
## 370  0.851199053 0.148800947  one Group1  56 1120   20 334 0.143589744
## 792  0.850137720 0.149862280  one Group1  57 1120   20 333 0.146153846
## 1197 0.850098734 0.149901266  one Group1  58 1120   20 332 0.148717949
## 177  0.849875540 0.150124460  one Group1  59 1120   20 331 0.151282051
## 159  0.848889365 0.151110635 zero Group1  59 1119   21 331 0.151282051
## 399  0.848646127 0.151353873  one Group1  60 1119   21 330 0.153846154
## 195  0.847568860 0.152431140  one Group1  61 1119   21 329 0.156410256
## 234  0.847088742 0.152911258  one Group1  62 1119   21 328 0.158974359
## 743  0.845357604 0.154642396 zero Group1  62 1118   22 328 0.158974359
## 190  0.844686763 0.155313237  one Group1  63 1118   22 327 0.161538462
## 922  0.843666677 0.156333323 zero Group1  63 1117   23 327 0.161538462
## 1203 0.843227461 0.156772539  one Group1  64 1117   23 326 0.164102564
## 1095 0.838248578 0.161751422  one Group1  65 1117   23 325 0.166666667
## 249  0.836463140 0.163536860  one Group1  66 1117   23 324 0.169230769
## 790  0.836206082 0.163793918  one Group1  67 1117   23 323 0.171794872
## 397  0.836088963 0.163911037  one Group1  68 1117   23 322 0.174358974
## 1439 0.835756861 0.164243139 zero Group1  68 1116   24 322 0.174358974
## 127  0.835578839 0.164421161  one Group1  69 1116   24 321 0.176923077
## 813  0.834337805 0.165662195 zero Group1  69 1115   25 321 0.176923077
## 402  0.833067914 0.166932086  one Group1  70 1115   25 320 0.179487179
## 38   0.832827340 0.167172660  one Group1  71 1115   25 319 0.182051282
## 238  0.832081481 0.167918519  one Group1  72 1115   25 318 0.184615385
## 710  0.831256286 0.168743714 zero Group1  72 1114   26 318 0.184615385
## 1441 0.830512082 0.169487918 zero Group1  72 1113   27 318 0.184615385
## 1196 0.830333094 0.169666906  one Group1  73 1113   27 317 0.187179487
## 378  0.830312774 0.169687226  one Group1  74 1113   27 316 0.189743590
## 258  0.828944353 0.171055647  one Group1  75 1113   27 315 0.192307692
## 348  0.828920318 0.171079682  one Group1  76 1113   27 314 0.194871795
## 928  0.827813410 0.172186590 zero Group1  76 1112   28 314 0.194871795
## 235  0.827808133 0.172191867  one Group1  77 1112   28 313 0.197435897
## 236  0.827200068 0.172799932  one Group1  78 1112   28 312 0.200000000
## 593  0.827194559 0.172805441  one Group1  79 1112   28 311 0.202564103
## 1202 0.825742530 0.174257470  one Group1  80 1112   28 310 0.205128205
## 189  0.824605567 0.175394433  one Group1  81 1112   28 309 0.207692308
## 200  0.824470169 0.175529831  one Group1  82 1112   28 308 0.210256410
## 294  0.824291441 0.175708559  one Group1  83 1112   28 307 0.212820513
## 699  0.822128379 0.177871621  one Group1  84 1112   28 306 0.215384615
## 1228 0.821664018 0.178335982 zero Group1  84 1111   29 306 0.215384615
## 191  0.821604949 0.178395051  one Group1  85 1111   29 305 0.217948718
## 371  0.821297631 0.178702369  one Group1  86 1111   29 304 0.220512821
## 262  0.820521527 0.179478473  one Group1  87 1111   29 303 0.223076923
## 389  0.818510633 0.181489367  one Group1  88 1111   29 302 0.225641026
## 233  0.817052457 0.182947543  one Group1  89 1111   29 301 0.228205128
## 1211 0.817047272 0.182952728 zero Group1  89 1110   30 301 0.228205128
## 803  0.815893335 0.184106665 zero Group1  89 1109   31 301 0.228205128
## 251  0.815515975 0.184484025  one Group1  90 1109   31 300 0.230769231
## 1374 0.814981705 0.185018295 zero Group1  90 1108   32 300 0.230769231
## 1447 0.814531549 0.185468451 zero Group1  90 1107   33 300 0.230769231
## 748  0.812809527 0.187190473 zero Group1  90 1106   34 300 0.230769231
## 795  0.812349710 0.187650290 zero Group1  90 1105   35 300 0.230769231
## 491  0.812343377 0.187656623 zero Group1  90 1104   36 300 0.230769231
## 1500 0.810331233 0.189668767  one Group1  91 1104   36 299 0.233333333
## 563  0.810028090 0.189971910 zero Group1  91 1103   37 299 0.233333333
## 638  0.809984939 0.190015061 zero Group1  91 1102   38 299 0.233333333
## 1139 0.809172438 0.190827562 zero Group1  91 1101   39 299 0.233333333
## 441  0.807262077 0.192737923 zero Group1  91 1100   40 299 0.233333333
## 210  0.807088662 0.192911338 zero Group1  91 1099   41 299 0.233333333
## 15   0.806809104 0.193190896  one Group1  92 1099   41 298 0.235897436
## 832  0.806787593 0.193212407 zero Group1  92 1098   42 298 0.235897436
## 481  0.805026402 0.194973598  one Group1  93 1098   42 297 0.238461538
## 1409 0.803499620 0.196500380  one Group1  94 1098   42 296 0.241025641
## 631  0.802207831 0.197792169 zero Group1  94 1097   43 296 0.241025641
## 1000 0.802118904 0.197881096  one Group1  95 1097   43 295 0.243589744
## 1302 0.801287992 0.198712008  one Group1  96 1097   43 294 0.246153846
## 1040 0.800614144 0.199385856  one Group1  97 1097   43 293 0.248717949
## 851  0.800342897 0.199657103 zero Group1  97 1096   44 293 0.248717949
## 446  0.799816297 0.200183703 zero Group1  97 1095   45 293 0.248717949
## 188  0.799611428 0.200388572  one Group1  98 1095   45 292 0.251282051
## 306  0.799188041 0.200811959 zero Group1  98 1094   46 292 0.251282051
## 126  0.798859178 0.201140822  one Group1  99 1094   46 291 0.253846154
## 1036 0.798705652 0.201294348  one Group1 100 1094   46 290 0.256410256
## 1051 0.796659703 0.203340297 zero Group1 100 1093   47 290 0.256410256
## 1506 0.796591047 0.203408953  one Group1 101 1093   47 289 0.258974359
## 1519 0.793119725 0.206880275 zero Group1 101 1092   48 289 0.258974359
## 656  0.792902010 0.207097990 zero Group1 101 1091   49 289 0.258974359
## 1417 0.792610642 0.207389358  one Group1 102 1091   49 288 0.261538462
## 166  0.792557394 0.207442606 zero Group1 102 1090   50 288 0.261538462
## 785  0.792175601 0.207824399  one Group1 103 1090   50 287 0.264102564
## 173  0.792159563 0.207840437  one Group1 104 1090   50 286 0.266666667
## 316  0.792099903 0.207900097  one Group1 105 1090   50 285 0.269230769
## 436  0.791382553 0.208617447  one Group1 106 1090   50 284 0.271794872
## 20   0.790787160 0.209212840  one Group1 107 1090   50 283 0.274358974
## 434  0.790595168 0.209404832  one Group1 108 1090   50 282 0.276923077
## 300  0.789851649 0.210148351  one Group1 109 1090   50 281 0.279487179
## 68   0.789784200 0.210215800 zero Group1 109 1089   51 281 0.279487179
## 302  0.789774869 0.210225131  one Group1 110 1089   51 280 0.282051282
## 1004 0.789270760 0.210729240  one Group1 111 1089   51 279 0.284615385
## 999  0.789169703 0.210830297  one Group1 112 1089   51 278 0.287179487
## 405  0.788691707 0.211308293 zero Group1 112 1088   52 278 0.287179487
## 203  0.786862344 0.213137656  one Group1 113 1088   52 277 0.289743590
## 781  0.786543952 0.213456048  one Group1 114 1088   52 276 0.292307692
## 331  0.785646594 0.214353406 zero Group1 114 1087   53 276 0.292307692
## 1246 0.784778913 0.215221087 zero Group1 114 1086   54 276 0.292307692
## 1406 0.784206452 0.215793548  one Group1 115 1086   54 275 0.294871795
## 1001 0.784023168 0.215976832  one Group1 116 1086   54 274 0.297435897
## 1039 0.783488172 0.216511828  one Group1 117 1086   54 273 0.300000000
## 1199 0.783256448 0.216743552  one Group1 118 1086   54 272 0.302564103
## 1278 0.782741058 0.217258942 zero Group1 118 1085   55 272 0.302564103
## 698  0.782679386 0.217320614  one Group1 119 1085   55 271 0.305128205
## 511  0.782668477 0.217331523 zero Group1 119 1084   56 271 0.305128205
## 476  0.782173013 0.217826987  one Group1 120 1084   56 270 0.307692308
## 375  0.781752893 0.218247107  one Group1 121 1084   56 269 0.310256410
## 344  0.781091671 0.218908329  one Group1 122 1084   56 268 0.312820513
## 487  0.780258161 0.219741839  one Group1 123 1084   56 267 0.315384615
## 1301 0.779794401 0.220205599  one Group1 124 1084   56 266 0.317948718
## 764  0.778574826 0.221425174 zero Group1 124 1083   57 266 0.317948718
## 1412 0.778341618 0.221658382  one Group1 125 1083   57 265 0.320512821
## 154  0.778303148 0.221696852  one Group1 126 1083   57 264 0.323076923
## 1098 0.778258516 0.221741484  one Group1 127 1083   57 263 0.325641026
## 295  0.778129372 0.221870628  one Group1 128 1083   57 262 0.328205128
## 1093 0.777920764 0.222079236  one Group1 129 1083   57 261 0.330769231
## 1311 0.776977391 0.223022609  one Group1 130 1083   57 260 0.333333333
## 1317 0.776824386 0.223175614 zero Group1 130 1082   58 260 0.333333333
## 1306 0.776225840 0.223774160  one Group1 131 1082   58 259 0.335897436
## 1318 0.775709096 0.224290904 zero Group1 131 1081   59 259 0.335897436
## 81   0.775254491 0.224745509  one Group1 132 1081   59 258 0.338461538
## 815  0.775058922 0.224941078 zero Group1 132 1080   60 258 0.338461538
## 1508 0.774719791 0.225280209  one Group1 133 1080   60 257 0.341025641
## 1504 0.774599736 0.225400264  one Group1 134 1080   60 256 0.343589744
## 7    0.772222672 0.227777328  one Group1 135 1080   60 255 0.346153846
## 1103 0.768125786 0.231874214 zero Group1 135 1079   61 255 0.346153846
## 1368 0.767228552 0.232771448 zero Group1 135 1078   62 255 0.346153846
## 696  0.766351661 0.233648339  one Group1 136 1078   62 254 0.348717949
## 242  0.764669527 0.235330473  one Group1 137 1078   62 253 0.351282051
## 443  0.764282165 0.235717835 zero Group1 137 1077   63 253 0.351282051
## 1033 0.763663280 0.236336720  one Group1 138 1077   63 252 0.353846154
## 758  0.762831489 0.237168511 zero Group1 138 1076   64 252 0.353846154
## 1176 0.762735546 0.237264454 zero Group1 138 1075   65 252 0.353846154
## 697  0.761217262 0.238782738  one Group1 139 1075   65 251 0.356410256
## 123  0.761190721 0.238809279  one Group1 140 1075   65 250 0.358974359
## 279  0.760395582 0.239604418  one Group1 141 1075   65 249 0.361538462
## 836  0.758915692 0.241084308 zero Group1 141 1074   66 249 0.361538462
## 1002 0.757776155 0.242223845  one Group1 142 1074   66 248 0.364102564
## 8    0.757597912 0.242402088  one Group1 143 1074   66 247 0.366666667
## 1388 0.755527899 0.244472101 zero Group1 143 1073   67 247 0.366666667
## 1509 0.754571594 0.245428406  one Group1 144 1073   67 246 0.369230769
## 802  0.753462335 0.246537665 zero Group1 144 1072   68 246 0.369230769
## 61   0.753215004 0.246784996  one Group1 145 1072   68 245 0.371794872
## 819  0.752671022 0.247328978 zero Group1 145 1071   69 245 0.371794872
## 498  0.752021663 0.247978337 zero Group1 145 1070   70 245 0.371794872
## 216  0.751552814 0.248447186  one Group1 146 1070   70 244 0.374358974
## 484  0.750933440 0.249066560  one Group1 147 1070   70 243 0.376923077
## 460  0.749745447 0.250254553 zero Group1 147 1069   71 243 0.376923077
## 282  0.749298484 0.250701516  one Group1 148 1069   71 242 0.379487179
## 892  0.749126039 0.250873961  one Group1 149 1069   71 241 0.382051282
## 594  0.748728529 0.251271471  one Group1 150 1069   71 240 0.384615385
## 16   0.748266603 0.251733397  one Group1 151 1069   71 239 0.387179487
## 654  0.747514662 0.252485338 zero Group1 151 1068   72 239 0.387179487
## 313  0.742332188 0.257667812 zero Group1 151 1067   73 239 0.387179487
## 894  0.738873516 0.261126484  one Group1 152 1067   73 238 0.389743590
## 898  0.738702283 0.261297717  one Group1 153 1067   73 237 0.392307692
## 1200 0.736772680 0.263227320  one Group1 154 1067   73 236 0.394871795
## 1393 0.736662960 0.263337040 zero Group1 154 1066   74 236 0.394871795
## 1411 0.736645397 0.263354603  one Group1 155 1066   74 235 0.397435897
## 1097 0.735706989 0.264293011  one Group1 156 1066   74 234 0.400000000
## 1468 0.735101332 0.264898668 zero Group1 156 1065   75 234 0.400000000
## 766  0.734949086 0.265050914 zero Group1 156 1064   76 234 0.400000000
## 433  0.734689499 0.265310501  one Group1 157 1064   76 233 0.402564103
## 478  0.734507870 0.265492130  one Group1 158 1064   76 232 0.405128205
## 925  0.734223395 0.265776605 zero Group1 158 1063   77 232 0.405128205
## 70   0.733700607 0.266299393  one Group1 159 1063   77 231 0.407692308
## 1370 0.732827100 0.267172900 zero Group1 159 1062   78 231 0.407692308
## 277  0.732317826 0.267682174  one Group1 160 1062   78 230 0.410256410
## 1031 0.730404554 0.269595446  one Group1 161 1062   78 229 0.412820513
## 314  0.729515710 0.270484290 zero Group1 161 1061   79 229 0.412820513
## 728  0.728342480 0.271657520 zero Group1 161 1060   80 229 0.412820513
## 18   0.727903447 0.272096553  one Group1 162 1060   80 228 0.415384615
## 66   0.727294726 0.272705274  one Group1 163 1060   80 227 0.417948718
## 350  0.727108456 0.272891544  one Group1 164 1060   80 226 0.420512821
## 28   0.724095648 0.275904352  one Group1 165 1060   80 225 0.423076923
## 329  0.723768143 0.276231857 zero Group1 165 1059   81 225 0.423076923
## 283  0.722751232 0.277248768  one Group1 166 1059   81 224 0.425641026
## 351  0.722627486 0.277372514  one Group1 167 1059   81 223 0.428205128
## 237  0.720432290 0.279567710  one Group1 168 1059   81 222 0.430769231
## 689  0.720337375 0.279662625  one Group1 169 1059   81 221 0.433333333
## 964  0.720327677 0.279672323 zero Group1 169 1058   82 221 0.433333333
## 683  0.720155016 0.279844984 zero Group1 169 1057   83 221 0.433333333
## 590  0.719483425 0.280516575  one Group1 170 1057   83 220 0.435897436
## 621  0.719292204 0.280707796 zero Group1 170 1056   84 220 0.435897436
## 366  0.718906384 0.281093616 zero Group1 170 1055   85 220 0.435897436
## 1462 0.718822170 0.281177830 zero Group1 170 1054   86 220 0.435897436
## 1056 0.718591742 0.281408258  one Group1 171 1054   86 219 0.438461538
## 1141 0.718403726 0.281596274 zero Group1 171 1053   87 219 0.438461538
## 260  0.717970728 0.282029272  one Group1 172 1053   87 218 0.441025641
## 595  0.717393957 0.282606043  one Group1 173 1053   87 217 0.443589744
## 1392 0.717338043 0.282661957 zero Group1 173 1052   88 217 0.443589744
## 104  0.717156136 0.282843864 zero Group1 173 1051   89 217 0.443589744
## 961  0.716346787 0.283653213 zero Group1 173 1050   90 217 0.443589744
## 129  0.716264394 0.283735606  one Group1 174 1050   90 216 0.446153846
## 1395 0.715858210 0.284141790 zero Group1 174 1049   91 216 0.446153846
## 181  0.715469926 0.284530074  one Group1 175 1049   91 215 0.448717949
## 429  0.714312413 0.285687587  one Group1 176 1049   91 214 0.451282051
## 1124 0.713410645 0.286589355 zero Group1 176 1048   92 214 0.451282051
## 895  0.712892055 0.287107945  one Group1 177 1048   92 213 0.453846154
## 1018 0.712452982 0.287547018 zero Group1 177 1047   93 213 0.453846154
## 1049 0.712216465 0.287783535 zero Group1 177 1046   94 213 0.453846154
## 1309 0.711799113 0.288200887  one Group1 178 1046   94 212 0.456410256
## 1156 0.710512075 0.289487925 zero Group1 178 1045   95 212 0.456410256
## 1321 0.710234497 0.289765503 zero Group1 178 1044   96 212 0.456410256
## 55   0.709486097 0.290513903  one Group1 179 1044   96 211 0.458974359
## 149  0.709274393 0.290725607  one Group1 180 1044   96 210 0.461538462
## 1127 0.707050251 0.292949749 zero Group1 180 1043   97 210 0.461538462
## 4    0.705895189 0.294104811  one Group1 181 1043   97 209 0.464102564
## 178  0.704109160 0.295890840  one Group1 182 1043   97 208 0.466666667
## 591  0.702486449 0.297513551  one Group1 183 1043   97 207 0.469230769
## 756  0.702346022 0.297653978 zero Group1 183 1042   98 207 0.469230769
## 951  0.702151671 0.297848329 zero Group1 183 1041   99 207 0.469230769
## 1505 0.701615403 0.298384597  one Group1 184 1041   99 206 0.471794872
## 141  0.700944602 0.299055398  one Group1 185 1041   99 205 0.474358974
## 513  0.700910517 0.299089483 zero Group1 185 1040  100 205 0.474358974
## 72   0.700854328 0.299145672  one Group1 186 1040  100 204 0.476923077
## 1285 0.700218316 0.299781684 zero Group1 186 1039  101 204 0.476923077
## 1478 0.699769840 0.300230160 zero Group1 186 1038  102 204 0.476923077
## 147  0.699541064 0.300458936  one Group1 187 1038  102 203 0.479487179
## 161  0.699407413 0.300592587 zero Group1 187 1037  103 203 0.479487179
## 1133 0.699091030 0.300908970 zero Group1 187 1036  104 203 0.479487179
## 547  0.697132420 0.302867580 zero Group1 187 1035  105 203 0.479487179
## 1174 0.696791769 0.303208231 zero Group1 187 1034  106 203 0.479487179
## 1198 0.696545003 0.303454997  one Group1 188 1034  106 202 0.482051282
## 1484 0.696528510 0.303471490 zero Group1 188 1033  107 202 0.482051282
## 585  0.696512774 0.303487226  one Group1 189 1033  107 201 0.484615385
## 530  0.695281919 0.304718081 zero Group1 189 1032  108 201 0.484615385
## 618  0.692105428 0.307894572 zero Group1 189 1031  109 201 0.484615385
## 936  0.687685300 0.312314700 zero Group1 189 1030  110 201 0.484615385
## 304  0.687147090 0.312852910  one Group1 190 1030  110 200 0.487179487
## 192  0.686144761 0.313855239  one Group1 191 1030  110 199 0.489743590
## 1336 0.686107808 0.313892192 zero Group1 191 1029  111 199 0.489743590
## 1078 0.685319741 0.314680259 zero Group1 191 1028  112 199 0.489743590
## 86   0.684617992 0.315382008  one Group1 192 1028  112 198 0.492307692
## 1389 0.684563796 0.315436204 zero Group1 192 1027  113 198 0.492307692
## 1075 0.683403911 0.316596089 zero Group1 192 1026  114 198 0.492307692
## 95   0.681628896 0.318371104 zero Group1 192 1025  115 198 0.492307692
## 782  0.681460338 0.318539662  one Group1 193 1025  115 197 0.494871795
## 1300 0.679161491 0.320838509  one Group1 194 1025  115 196 0.497435897
## 1068 0.677787265 0.322212735 zero Group1 194 1024  116 196 0.497435897
## 891  0.676721649 0.323278351  one Group1 195 1024  116 195 0.500000000
## 1084 0.676666504 0.323333496 zero Group1 195 1023  117 195 0.500000000
## 564  0.675650392 0.324349608 zero Group1 195 1022  118 195 0.500000000
## 545  0.673616041 0.326383959 zero Group1 195 1021  119 195 0.500000000
## 93   0.672976871 0.327023129  one Group1 196 1021  119 194 0.502564103
## 228  0.672765028 0.327234972 zero Group1 196 1020  120 194 0.502564103
## 387  0.671851360 0.328148640  one Group1 197 1020  120 193 0.505128205
## 26   0.670612536 0.329387464 zero Group1 197 1019  121 193 0.505128205
## 981  0.670531814 0.329468186 zero Group1 197 1018  122 193 0.505128205
## 298  0.670494361 0.329505639  one Group1 198 1018  122 192 0.507692308
## 589  0.669706647 0.330293353  one Group1 199 1018  122 191 0.510256410
## 1333 0.667765269 0.332234731 zero Group1 199 1017  123 191 0.510256410
## 576  0.665566783 0.334433217 zero Group1 199 1016  124 191 0.510256410
## 954  0.663788970 0.336211030 zero Group1 199 1015  125 191 0.510256410
## 789  0.662794530 0.337205470  one Group1 200 1015  125 190 0.512820513
## 75   0.661411791 0.338588209  one Group1 201 1015  125 189 0.515384615
## 1262 0.660442307 0.339557693 zero Group1 201 1014  126 189 0.515384615
## 1485 0.659444117 0.340555883 zero Group1 201 1013  127 189 0.515384615
## 1407 0.659178666 0.340821334  one Group1 202 1013  127 188 0.517948718
## 99   0.658777316 0.341222684 zero Group1 202 1012  128 188 0.517948718
## 522  0.658430374 0.341569626 zero Group1 202 1011  129 188 0.517948718
## 939  0.657924549 0.342075451 zero Group1 202 1010  130 188 0.517948718
## 714  0.657493234 0.342506766 zero Group1 202 1009  131 188 0.517948718
## 1186 0.657279367 0.342720633 zero Group1 202 1008  132 188 0.517948718
## 1155 0.656505106 0.343494894 zero Group1 202 1007  133 188 0.517948718
## 1164 0.656338062 0.343661938 zero Group1 202 1006  134 188 0.517948718
## 517  0.654568514 0.345431486 zero Group1 202 1005  135 188 0.517948718
## 1386 0.653628422 0.346371578 zero Group1 202 1004  136 188 0.517948718
## 1486 0.653032195 0.346967805 zero Group1 202 1003  137 188 0.517948718
## 1288 0.653024029 0.346975971 zero Group1 202 1002  138 188 0.517948718
## 284  0.652153824 0.347846176  one Group1 203 1002  138 187 0.520512821
## 701  0.651829253 0.348170747  one Group1 204 1002  138 186 0.523076923
## 1250 0.647577617 0.352422383 zero Group1 204 1001  139 186 0.523076923
## 1289 0.647484567 0.352515433 zero Group1 204 1000  140 186 0.523076923
## 708  0.645030025 0.354969975 zero Group1 204  999  141 186 0.523076923
## 1188 0.642888833 0.357111167 zero Group1 204  998  142 186 0.523076923
## 840  0.641965640 0.358034360 zero Group1 204  997  143 186 0.523076923
## 1265 0.641406325 0.358593675 zero Group1 204  996  144 186 0.523076923
## 1327 0.639858437 0.360141563 zero Group1 204  995  145 186 0.523076923
## 538  0.637340150 0.362659850 zero Group1 204  994  146 186 0.523076923
## 1073 0.637056472 0.362943528 zero Group1 204  993  147 186 0.523076923
## 1145 0.635991320 0.364008680 zero Group1 204  992  148 186 0.523076923
## 369  0.635597175 0.364402825  one Group1 205  992  148 185 0.525641026
## 746  0.635026684 0.364973316 zero Group1 205  991  149 185 0.525641026
## 562  0.632648363 0.367351637 zero Group1 205  990  150 185 0.525641026
## 1193 0.630889221 0.369110779  one Group1 206  990  150 184 0.528205128
## 473  0.630420473 0.369579527 zero Group1 206  989  151 184 0.528205128
## 1320 0.630221353 0.369778647 zero Group1 206  988  152 184 0.528205128
## 536  0.629178271 0.370821729 zero Group1 206  987  153 184 0.528205128
## 773  0.629124571 0.370875429 zero Group1 206  986  154 184 0.528205128
## 219  0.627652483 0.372347517 zero Group1 206  985  155 184 0.528205128
## 837  0.627437411 0.372562589 zero Group1 206  984  156 184 0.528205128
## 137  0.627308512 0.372691488  one Group1 207  984  156 183 0.530769231
## 287  0.627081028 0.372918972  one Group1 208  984  156 182 0.533333333
## 616  0.626372202 0.373627798 zero Group1 208  983  157 182 0.533333333
## 1385 0.625626008 0.374373992 zero Group1 208  982  158 182 0.533333333
## 995  0.625574356 0.374425644  one Group1 209  982  158 181 0.535897436
## 1354 0.625455823 0.374544177 zero Group1 209  981  159 181 0.535897436
## 685  0.625415214 0.374584786 zero Group1 209  980  160 181 0.535897436
## 986  0.625115275 0.374884725 zero Group1 209  979  161 181 0.535897436
## 146  0.624904573 0.375095427  one Group1 210  979  161 180 0.538461538
## 841  0.623289708 0.376710292 zero Group1 210  978  162 180 0.538461538
## 490  0.622473137 0.377526863 zero Group1 210  977  163 180 0.538461538
## 122  0.622427286 0.377572714  one Group1 211  977  163 179 0.541025641
## 1253 0.621333937 0.378666063 zero Group1 211  976  164 179 0.541025641
## 569  0.621215007 0.378784993 zero Group1 211  975  165 179 0.541025641
## 1160 0.620126199 0.379873801 zero Group1 211  974  166 179 0.541025641
## 1362 0.619729711 0.380270289 zero Group1 211  973  167 179 0.541025641
## 404  0.618380133 0.381619867 zero Group1 211  972  168 179 0.541025641
## 293  0.617818383 0.382181617  one Group1 212  972  168 178 0.543589744
## 1177 0.617491717 0.382508283 zero Group1 212  971  169 178 0.543589744
## 503  0.616074406 0.383925594 zero Group1 212  970  170 178 0.543589744
## 635  0.614934826 0.385065174 zero Group1 212  969  171 178 0.543589744
## 644  0.611762844 0.388237156 zero Group1 212  968  172 178 0.543589744
## 1361 0.611025014 0.388974986 zero Group1 212  967  173 178 0.543589744
## 1180 0.609398454 0.390601546 zero Group1 212  966  174 178 0.543589744
## 1195 0.608957727 0.391042273  one Group1 213  966  174 177 0.546153846
## 1089 0.608110216 0.391889784  one Group1 214  966  174 176 0.548717949
## 19   0.607399733 0.392600267  one Group1 215  966  174 175 0.551282051
## 869  0.607334717 0.392665283 zero Group1 215  965  175 175 0.551282051
## 1464 0.606748605 0.393251395 zero Group1 215  964  176 175 0.551282051
## 462  0.605594469 0.394405531 zero Group1 215  963  177 175 0.551282051
## 856  0.605352453 0.394647547 zero Group1 215  962  178 175 0.551282051
## 1483 0.602834809 0.397165191 zero Group1 215  961  179 175 0.551282051
## 575  0.602755095 0.397244905 zero Group1 215  960  180 175 0.551282051
## 649  0.602662848 0.397337152 zero Group1 215  959  181 175 0.551282051
## 377  0.602419579 0.397580421  one Group1 216  959  181 174 0.553846154
## 212  0.602390693 0.397609307 zero Group1 216  958  182 174 0.553846154
## 1194 0.601661759 0.398338241  one Group1 217  958  182 173 0.556410256
## 244  0.600127351 0.399872649  one Group1 218  958  182 172 0.558974359
## 1453 0.599624069 0.400375931 zero Group1 218  957  183 172 0.558974359
## 278  0.599167889 0.400832111  one Group1 219  957  183 171 0.561538462
## 1158 0.598147127 0.401852873 zero Group1 219  956  184 171 0.561538462
## 584  0.598131193 0.401868807  one Group1 220  956  184 170 0.564102564
## 642  0.598085368 0.401914632 zero Group1 220  955  185 170 0.564102564
## 588  0.597980669 0.402019331  one Group1 221  955  185 169 0.566666667
## 1467 0.596780227 0.403219773 zero Group1 221  954  186 169 0.566666667
## 172  0.595840791 0.404159209  one Group1 222  954  186 168 0.569230769
## 763  0.595662635 0.404337365 zero Group1 222  953  187 168 0.569230769
## 71   0.594407704 0.405592296  one Group1 223  953  187 167 0.571794872
## 292  0.594392168 0.405607832  one Group1 224  953  187 166 0.574358974
## 1053 0.594190532 0.405809468 zero Group1 224  952  188 166 0.574358974
## 209  0.593695824 0.406304176  one Group1 225  952  188 165 0.576923077
## 770  0.593648134 0.406351866 zero Group1 225  951  189 165 0.576923077
## 36   0.592828757 0.407171243  one Group1 226  951  189 164 0.579487179
## 243  0.592767882 0.407232118  one Group1 227  951  189 163 0.582051282
## 568  0.592677580 0.407322420 zero Group1 227  950  190 163 0.582051282
## 565  0.592633750 0.407366250 zero Group1 227  949  191 163 0.582051282
## 515  0.591719891 0.408280109 zero Group1 227  948  192 163 0.582051282
## 108  0.591682309 0.408317691 zero Group1 227  947  193 163 0.582051282
## 947  0.591210167 0.408789833 zero Group1 227  946  194 163 0.582051282
## 774  0.591097306 0.408902694 zero Group1 227  945  195 163 0.582051282
## 145  0.590674586 0.409325414  one Group1 228  945  195 162 0.584615385
## 879  0.589713929 0.410286071 zero Group1 228  944  196 162 0.584615385
## 982  0.589575038 0.410424962 zero Group1 228  943  197 162 0.584615385
## 1007 0.589296396 0.410703604  one Group1 229  943  197 161 0.587179487
## 458  0.588474673 0.411525327 zero Group1 229  942  198 161 0.587179487
## 1179 0.587510207 0.412489793 zero Group1 229  941  199 161 0.587179487
## 839  0.586248529 0.413751471 zero Group1 229  940  200 161 0.587179487
## 392  0.585457947 0.414542053  one Group1 230  940  200 160 0.589743590
## 1005 0.585026465 0.414973535  one Group1 231  940  200 159 0.592307692
## 1254 0.584604656 0.415395344 zero Group1 231  939  201 159 0.592307692
## 858  0.584390767 0.415609233 zero Group1 231  938  202 159 0.592307692
## 744  0.583519282 0.416480718 zero Group1 231  937  203 159 0.592307692
## 1088 0.582831806 0.417168194  one Group1 232  937  203 158 0.594871795
## 762  0.582713591 0.417286409 zero Group1 232  936  204 158 0.594871795
## 834  0.581814731 0.418185269 zero Group1 232  935  205 158 0.594871795
## 1520 0.581305071 0.418694929 zero Group1 232  934  206 158 0.594871795
## 546  0.581115641 0.418884359 zero Group1 232  933  207 158 0.594871795
## 58   0.580264883 0.419735117 zero Group1 232  932  208 158 0.594871795
## 465  0.578035776 0.421964224 zero Group1 232  931  209 158 0.594871795
## 583  0.577960213 0.422039787  one Group1 233  931  209 157 0.597435897
## 150  0.576784326 0.423215674  one Group1 234  931  209 156 0.600000000
## 144  0.575967615 0.424032385  one Group1 235  931  209 155 0.602564103
## 285  0.575662784 0.424337216  one Group1 236  931  209 154 0.605128205
## 620  0.575292563 0.424707437 zero Group1 236  930  210 154 0.605128205
## 857  0.575098755 0.424901245 zero Group1 236  929  211 154 0.605128205
## 211  0.574935824 0.425064176 zero Group1 236  928  212 154 0.605128205
## 380  0.573667964 0.426332036  one Group1 237  928  212 153 0.607692308
## 288  0.573568423 0.426431577  one Group1 238  928  212 152 0.610256410
## 291  0.573537390 0.426462610  one Group1 239  928  212 151 0.612820513
## 488  0.572719352 0.427280648  one Group1 240  928  212 150 0.615384615
## 398  0.571284102 0.428715898  one Group1 241  928  212 149 0.617948718
## 985  0.570049134 0.429950866 zero Group1 241  927  213 149 0.617948718
## 480  0.569900618 0.430099382  one Group1 242  927  213 148 0.620512821
## 272  0.569731604 0.430268396 zero Group1 242  926  214 148 0.620512821
## 875  0.568505374 0.431494626 zero Group1 242  925  215 148 0.620512821
## 1244 0.567992228 0.432007772 zero Group1 242  924  216 148 0.620512821
## 124  0.566814543 0.433185457  one Group1 243  924  216 147 0.623076923
## 979  0.566463690 0.433536310 zero Group1 243  923  217 147 0.623076923
## 1444 0.566430113 0.433569887 zero Group1 243  922  218 147 0.623076923
## 125  0.565098850 0.434901150  one Group1 244  922  218 146 0.625641026
## 118  0.565033832 0.434966168 zero Group1 244  921  219 146 0.625641026
## 89   0.564850947 0.435149053  one Group1 245  921  219 145 0.628205128
## 493  0.563919320 0.436080680 zero Group1 245  920  220 145 0.628205128
## 632  0.562655147 0.437344853 zero Group1 245  919  221 145 0.628205128
## 1058 0.562179081 0.437820919  one Group1 246  919  221 144 0.630769231
## 760  0.562067534 0.437932466 zero Group1 246  918  222 144 0.630769231
## 1109 0.560242520 0.439757480 zero Group1 246  917  223 144 0.630769231
## 355  0.559807211 0.440192789 zero Group1 246  916  224 144 0.630769231
## 1110 0.558546453 0.441453547 zero Group1 246  915  225 144 0.630769231
## 205  0.558254464 0.441745536 zero Group1 246  914  226 144 0.630769231
## 749  0.557855296 0.442144704 zero Group1 246  913  227 144 0.630769231
## 1312 0.557676085 0.442323915  one Group1 247  913  227 143 0.633333333
## 1074 0.557200945 0.442799055 zero Group1 247  912  228 143 0.633333333
## 1140 0.556212894 0.443787106 zero Group1 247  911  229 143 0.633333333
## 208  0.555752481 0.444247519  one Group1 248  911  229 142 0.635897436
## 797  0.555468374 0.444531626 zero Group1 248  910  230 142 0.635897436
## 807  0.554751607 0.445248393 zero Group1 248  909  231 142 0.635897436
## 1442 0.554541982 0.445458018 zero Group1 248  908  232 142 0.635897436
## 1102 0.554511739 0.445488261 zero Group1 248  907  233 142 0.635897436
## 1303 0.553743629 0.446256371  one Group1 249  907  233 141 0.638461538
## 396  0.553187071 0.446812929  one Group1 250  907  233 140 0.641025641
## 1283 0.552802762 0.447197238 zero Group1 250  906  234 140 0.641025641
## 1281 0.552614717 0.447385283 zero Group1 250  905  235 140 0.641025641
## 996  0.552481432 0.447518568  one Group1 251  905  235 139 0.643589744
## 182  0.552460903 0.447539097  one Group1 252  905  235 138 0.646153846
## 1387 0.552225585 0.447774415 zero Group1 252  904  236 138 0.646153846
## 393  0.551865476 0.448134524  one Group1 253  904  236 137 0.648717949
## 11   0.551838558 0.448161442  one Group1 254  904  236 136 0.651282051
## 1445 0.551407742 0.448592258 zero Group1 254  903  237 136 0.651282051
## 1264 0.549834006 0.450165994 zero Group1 254  902  238 136 0.651282051
## 171  0.549741224 0.450258776  one Group1 255  902  238 135 0.653846154
## 1216 0.549399268 0.450600732 zero Group1 255  901  239 135 0.653846154
## 1108 0.549113867 0.450886133 zero Group1 255  900  240 135 0.653846154
## 1482 0.549076997 0.450923003 zero Group1 255  899  241 135 0.653846154
## 1045 0.549019249 0.450980751 zero Group1 255  898  242 135 0.653846154
## 587  0.548640094 0.451359906  one Group1 256  898  242 134 0.656410256
## 853  0.547515929 0.452484071 zero Group1 256  897  243 134 0.656410256
## 787  0.547464831 0.452535169  one Group1 257  897  243 133 0.658974359
## 280  0.547309610 0.452690390  one Group1 258  897  243 132 0.661538462
## 117  0.546827981 0.453172019 zero Group1 258  896  244 132 0.661538462
## 927  0.546256656 0.453743344 zero Group1 258  895  245 132 0.661538462
## 534  0.546069574 0.453930426 zero Group1 258  894  246 132 0.661538462
## 738  0.545919686 0.454080314 zero Group1 258  893  247 132 0.661538462
## 675  0.543342229 0.456657771 zero Group1 258  892  248 132 0.661538462
## 938  0.543092211 0.456907789 zero Group1 258  891  249 132 0.661538462
## 1215 0.543049779 0.456950221 zero Group1 258  890  250 132 0.661538462
## 69   0.542991073 0.457008927 zero Group1 258  889  251 132 0.661538462
## 359  0.542296017 0.457703983 zero Group1 258  888  252 132 0.661538462
## 261  0.541219613 0.458780387  one Group1 259  888  252 131 0.664102564
## 1282 0.540745397 0.459254603 zero Group1 259  887  253 131 0.664102564
## 529  0.539861785 0.460138215 zero Group1 259  886  254 131 0.664102564
## 305  0.539475149 0.460524851  one Group1 260  886  254 130 0.666666667
## 1120 0.538824451 0.461175549 zero Group1 260  885  255 130 0.666666667
## 940  0.538446738 0.461553262 zero Group1 260  884  256 130 0.666666667
## 1009 0.538434620 0.461565380 zero Group1 260  883  257 130 0.666666667
## 264  0.538084412 0.461915588 zero Group1 260  882  258 130 0.666666667
## 641  0.536173923 0.463826077 zero Group1 260  881  259 130 0.666666667
## 1451 0.535505945 0.464494055 zero Group1 260  880  260 130 0.666666667
## 376  0.535291893 0.464708107  one Group1 261  880  260 129 0.669230769
## 256  0.535057687 0.464942313  one Group1 262  880  260 128 0.671794872
## 1284 0.534252710 0.465747290 zero Group1 262  879  261 128 0.671794872
## 952  0.532618268 0.467381732 zero Group1 262  878  262 128 0.671794872
## 1055 0.532212897 0.467787103  one Group1 263  878  262 127 0.674358974
## 232  0.531835095 0.468164905  one Group1 264  878  262 126 0.676923077
## 674  0.530907183 0.469092817 zero Group1 264  877  263 126 0.676923077
## 945  0.530807012 0.469192988 zero Group1 264  876  264 126 0.676923077
## 1146 0.530389921 0.469610079 zero Group1 264  875  265 126 0.676923077
## 997  0.529361113 0.470638887  one Group1 265  875  265 125 0.679487179
## 1528 0.528099869 0.471900131 zero Group1 265  874  266 125 0.679487179
## 1498 0.527843664 0.472156336 zero Group1 265  873  267 125 0.679487179
## 1375 0.526490447 0.473509553 zero Group1 265  872  268 125 0.679487179
## 1046 0.526237607 0.473762393 zero Group1 265  871  269 125 0.679487179
## 700  0.525811985 0.474188015  one Group1 266  871  269 124 0.682051282
## 1222 0.522215073 0.477784927 zero Group1 266  870  270 124 0.682051282
## 80   0.521313608 0.478686392  one Group1 267  870  270 123 0.684615385
## 849  0.520863867 0.479136133 zero Group1 267  869  271 123 0.684615385
## 270  0.520397643 0.479602357 zero Group1 267  868  272 123 0.684615385
## 1416 0.520021641 0.479978359  one Group1 268  868  272 122 0.687179487
## 687  0.520017101 0.479982899 zero Group1 268  867  273 122 0.687179487
## 1006 0.518311270 0.481688730  one Group1 269  867  273 121 0.689743590
## 1224 0.514531253 0.485468747 zero Group1 269  866  274 121 0.689743590
## 668  0.514465480 0.485534520 zero Group1 269  865  275 121 0.689743590
## 965  0.512781795 0.487218205 zero Group1 269  864  276 121 0.689743590
## 835  0.512491920 0.487508080 zero Group1 269  863  277 121 0.689743590
## 688  0.512275006 0.487724994 zero Group1 269  862  278 121 0.689743590
## 690  0.510533885 0.489466115  one Group1 270  862  278 120 0.692307692
## 968  0.509606866 0.490393134 zero Group1 270  861  279 120 0.692307692
## 113  0.509157359 0.490842641 zero Group1 270  860  280 120 0.692307692
## 1326 0.508745932 0.491254068 zero Group1 270  859  281 120 0.692307692
## 540  0.508542204 0.491457796 zero Group1 270  858  282 120 0.692307692
## 739  0.508292577 0.491707423 zero Group1 270  857  283 120 0.692307692
## 1054 0.507946868 0.492053132 zero Group1 270  856  284 120 0.692307692
## 572  0.506694734 0.493305266 zero Group1 270  855  285 120 0.692307692
## 421  0.504103017 0.495896983 zero Group1 270  854  286 120 0.692307692
## 953  0.503042424 0.496957576 zero Group1 270  853  287 120 0.692307692
## 1359 0.502323215 0.497676785 zero Group1 270  852  288 120 0.692307692
## 334  0.502222364 0.497777636 zero Group1 270  851  289 120 0.692307692
## 855  0.501497222 0.498502778 zero Group1 270  850  290 120 0.692307692
## 1443 0.500980953 0.499019047 zero Group1 270  849  291 120 0.692307692
## 96   0.498832550 0.501167450 zero Group1 270  848  292 120 0.692307692
## 1153 0.498651809 0.501348191 zero Group1 270  847  293 120 0.692307692
## 1213 0.497751032 0.502248968 zero Group1 270  846  294 120 0.692307692
## 679  0.497280825 0.502719175 zero Group1 270  845  295 120 0.692307692
## 1341 0.497166471 0.502833529 zero Group1 270  844  296 120 0.692307692
## 916  0.496368371 0.503631629 zero Group1 270  843  297 120 0.692307692
## 373  0.492484878 0.507515122  one Group1 271  843  297 119 0.694871795
## 874  0.491685609 0.508314391 zero Group1 271  842  298 119 0.694871795
## 944  0.491122327 0.508877673 zero Group1 271  841  299 119 0.694871795
## 139  0.490612884 0.509387116  one Group1 272  841  299 118 0.697435897
## 1017 0.487644253 0.512355747 zero Group1 272  840  300 118 0.697435897
## 356  0.487510566 0.512489434 zero Group1 272  839  301 118 0.697435897
## 1390 0.487359624 0.512640376 zero Group1 272  838  302 118 0.697435897
## 548  0.484846323 0.515153677 zero Group1 272  837  303 118 0.697435897
## 266  0.484641172 0.515358828 zero Group1 272  836  304 118 0.697435897
## 336  0.484637141 0.515362859 zero Group1 272  835  305 118 0.697435897
## 634  0.484076284 0.515923716 zero Group1 272  834  306 118 0.697435897
## 1034 0.483935782 0.516064218  one Group1 273  834  306 117 0.700000000
## 1044 0.483410791 0.516589209 zero Group1 273  833  307 117 0.700000000
## 138  0.483081874 0.516918126  one Group1 274  833  307 116 0.702564103
## 1107 0.482914979 0.517085021 zero Group1 274  832  308 116 0.702564103
## 1144 0.482890900 0.517109100 zero Group1 274  831  309 116 0.702564103
## 1025 0.482539514 0.517460486 zero Group1 274  830  310 116 0.702564103
## 385  0.482108800 0.517891200  one Group1 275  830  310 115 0.705128205
## 1041 0.482073144 0.517926856  one Group1 276  830  310 114 0.707692308
## 187  0.480334603 0.519665397  one Group1 277  830  310 113 0.710256410
## 94   0.479936922 0.520063078  one Group1 278  830  310 112 0.712820513
## 23   0.479676388 0.520323612  one Group1 279  830  310 111 0.715384615
## 486  0.478420629 0.521579371  one Group1 280  830  310 110 0.717948718
## 409  0.477895496 0.522104504 zero Group1 280  829  311 110 0.717948718
## 346  0.477892188 0.522107812  one Group1 281  829  311 109 0.720512821
## 430  0.477626928 0.522373072  one Group1 282  829  311 108 0.723076923
## 1343 0.476772300 0.523227700 zero Group1 282  828  312 108 0.723076923
## 1212 0.476650893 0.523349107 zero Group1 282  827  313 108 0.723076923
## 167  0.476419764 0.523580236 zero Group1 282  826  314 108 0.723076923
## 319  0.476394086 0.523605914  one Group1 283  826  314 107 0.725641026
## 286  0.476230994 0.523769006  one Group1 284  826  314 106 0.728205128
## 82   0.475868291 0.524131709  one Group1 285  826  314 105 0.730769231
## 174  0.475553317 0.524446683  one Group1 286  826  314 104 0.733333333
## 637  0.474940638 0.525059362 zero Group1 286  825  315 104 0.733333333
## 962  0.474739938 0.525260062 zero Group1 286  824  316 104 0.733333333
## 531  0.473928506 0.526071494 zero Group1 286  823  317 104 0.733333333
## 671  0.473488979 0.526511021 zero Group1 286  822  318 104 0.733333333
## 1159 0.473033851 0.526966149 zero Group1 286  821  319 104 0.733333333
## 1105 0.472079394 0.527920606 zero Group1 286  820  320 104 0.733333333
## 39   0.471451682 0.528548318  one Group1 287  820  320 103 0.735897436
## 528  0.471368867 0.528631133 zero Group1 287  819  321 103 0.735897436
## 114  0.470671474 0.529328526 zero Group1 287  818  322 103 0.735897436
## 888  0.470562750 0.529437250  one Group1 288  818  322 102 0.738461538
## 383  0.469680686 0.530319314  one Group1 289  818  322 101 0.741025641
## 40   0.469383697 0.530616303  one Group1 290  818  322 100 0.743589744
## 1338 0.467929073 0.532070927 zero Group1 290  817  323 100 0.743589744
## 532  0.467736606 0.532263394 zero Group1 290  816  324 100 0.743589744
## 394  0.467709337 0.532290663  one Group1 291  816  324  99 0.746153846
## 162  0.467692984 0.532307016 zero Group1 291  815  325  99 0.746153846
## 657  0.467608201 0.532391799 zero Group1 291  814  326  99 0.746153846
## 357  0.466637063 0.533362937 zero Group1 291  813  327  99 0.746153846
## 786  0.462698280 0.537301720  one Group1 292  813  327  98 0.748717949
## 255  0.460744529 0.539255471  one Group1 293  813  327  97 0.751282051
## 1069 0.460519158 0.539480842 zero Group1 293  812  328  97 0.751282051
## 88   0.460278007 0.539721993 zero Group1 293  811  329  97 0.751282051
## 1324 0.458804374 0.541195626 zero Group1 293  810  330  97 0.751282051
## 1420 0.458780066 0.541219934 zero Group1 293  809  331  97 0.751282051
## 558  0.458631784 0.541368216 zero Group1 293  808  332  97 0.751282051
## 105  0.458248374 0.541751626 zero Group1 293  807  333  97 0.751282051
## 1428 0.456524912 0.543475088 zero Group1 293  806  334  97 0.751282051
## 1355 0.456274058 0.543725942 zero Group1 293  805  335  97 0.751282051
## 608  0.456175687 0.543824313 zero Group1 293  804  336  97 0.751282051
## 808  0.455471096 0.544528904 zero Group1 293  803  337  97 0.751282051
## 317  0.453752318 0.546247682  one Group1 294  803  337  96 0.753846154
## 1260 0.453448775 0.546551225 zero Group1 294  802  338  96 0.753846154
## 1028 0.452275395 0.547724605 zero Group1 294  801  339  96 0.753846154
## 1523 0.452016423 0.547983577 zero Group1 294  800  340  96 0.753846154
## 102  0.451719920 0.548280080  one Group1 295  800  340  95 0.756410256
## 76   0.451577209 0.548422791  one Group1 296  800  340  94 0.758974359
## 820  0.451079628 0.548920372 zero Group1 296  799  341  94 0.758974359
## 1230 0.450628191 0.549371809 zero Group1 296  798  342  94 0.758974359
## 943  0.449504741 0.550495259 zero Group1 296  797  343  94 0.758974359
## 800  0.448946875 0.551053125 zero Group1 296  796  344  94 0.758974359
## 29   0.448218814 0.551781186 zero Group1 296  795  345  94 0.758974359
## 83   0.446990678 0.553009322  one Group1 297  795  345  93 0.761538462
## 202  0.445575572 0.554424428  one Group1 298  795  345  92 0.764102564
## 695  0.445176338 0.554823662  one Group1 299  795  345  91 0.766666667
## 281  0.443634568 0.556365432  one Group1 300  795  345  90 0.769230769
## 475  0.442372848 0.557627152 zero Group1 300  794  346  90 0.769230769
## 1266 0.441767188 0.558232812 zero Group1 300  793  347  90 0.769230769
## 1521 0.440964419 0.559035581 zero Group1 300  792  348  90 0.769230769
## 459  0.439198472 0.560801528 zero Group1 300  791  349  90 0.769230769
## 1298 0.437407546 0.562592454 zero Group1 300  790  350  90 0.769230769
## 169  0.436369656 0.563630344 zero Group1 300  789  351  90 0.769230769
## 1277 0.434657156 0.565342844 zero Group1 300  788  352  90 0.769230769
## 103  0.433950253 0.566049747 zero Group1 300  787  353  90 0.769230769
## 1299 0.433923903 0.566076097 zero Group1 300  786  354  90 0.769230769
## 461  0.433758805 0.566241195 zero Group1 300  785  355  90 0.769230769
## 116  0.433062333 0.566937667 zero Group1 300  784  356  90 0.769230769
## 301  0.432269861 0.567730139  one Group1 301  784  356  89 0.771794872
## 321  0.431499174 0.568500826 zero Group1 301  783  357  89 0.771794872
## 504  0.431397260 0.568602740 zero Group1 301  782  358  89 0.771794872
## 791  0.431330829 0.568669171  one Group1 302  782  358  88 0.774358974
## 1267 0.431191981 0.568808019 zero Group1 302  781  359  88 0.774358974
## 347  0.430343582 0.569656418  one Group1 303  781  359  87 0.776923077
## 555  0.429117043 0.570882957 zero Group1 303  780  360  87 0.776923077
## 1241 0.428865289 0.571134711 zero Group1 303  779  361  87 0.776923077
## 942  0.428088829 0.571911171 zero Group1 303  778  362  87 0.776923077
## 152  0.428071800 0.571928200  one Group1 304  777  363  86 0.779487179
## 501  0.428071800 0.571928200 zero Group1 304  777  363  86 0.779487179
## 447  0.428055581 0.571944419 zero Group1 304  776  364  86 0.779487179
## 1020 0.427393471 0.572606529 zero Group1 304  775  365  86 0.779487179
## 1085 0.426788637 0.573211363 zero Group1 304  774  366  86 0.779487179
## 1492 0.425833313 0.574166687 zero Group1 304  773  367  86 0.779487179
## 669  0.425599291 0.574400709 zero Group1 304  772  368  86 0.779487179
## 535  0.425340452 0.574659548 zero Group1 304  771  369  86 0.779487179
## 115  0.424520397 0.575479603 zero Group1 304  770  370  86 0.779487179
## 1373 0.423382380 0.576617620 zero Group1 304  769  371  86 0.779487179
## 673  0.422823927 0.577176073 zero Group1 304  768  372  86 0.779487179
## 312  0.422389904 0.577610096 zero Group1 304  767  373  86 0.779487179
## 297  0.420766747 0.579233253  one Group1 305  767  373  85 0.782051282
## 382  0.420609346 0.579390654  one Group1 306  767  373  84 0.784615385
## 1057 0.420571092 0.579428908  one Group1 307  767  373  83 0.787179487
## 87   0.420457652 0.579542348  one Group1 308  767  373  82 0.789743590
## 645  0.420340494 0.579659506 zero Group1 308  766  374  82 0.789743590
## 751  0.420099044 0.579900956 zero Group1 308  765  375  82 0.789743590
## 1252 0.419647016 0.580352984 zero Group1 308  764  376  82 0.789743590
## 729  0.419143039 0.580856961 zero Group1 308  763  377  82 0.789743590
## 45   0.417420387 0.582579613 zero Group1 308  762  378  82 0.789743590
## 1243 0.416797711 0.583202289 zero Group1 308  761  379  82 0.789743590
## 410  0.416087798 0.583912202 zero Group1 308  760  380  82 0.789743590
## 85   0.415842481 0.584157519  one Group1 309  760  380  81 0.792307692
## 516  0.414978040 0.585021960 zero Group1 309  759  381  81 0.792307692
## 268  0.414369729 0.585630271 zero Group1 309  758  382  81 0.792307692
## 495  0.414128160 0.585871840 zero Group1 309  757  383  81 0.792307692
## 12   0.413756568 0.586243432  one Group1 310  757  383  80 0.794871795
## 32   0.413442829 0.586557171 zero Group1 310  756  384  80 0.794871795
## 732  0.413211472 0.586788528 zero Group1 310  755  385  80 0.794871795
## 78   0.413210800 0.586789200  one Group1 311  755  385  79 0.797435897
## 79   0.413032125 0.586967875  one Group1 312  755  385  78 0.800000000
## 823  0.412681263 0.587318737 zero Group1 312  754  386  78 0.800000000
## 643  0.411501468 0.588498532 zero Group1 312  753  387  78 0.800000000
## 890  0.411304495 0.588695505  one Group1 313  753  387  77 0.802564103
## 198  0.410584066 0.589415934  one Group1 314  753  387  76 0.805128205
## 257  0.410238719 0.589761281  one Group1 315  753  387  75 0.807692308
## 801  0.409505496 0.590494504 zero Group1 315  752  388  75 0.807692308
## 1419 0.408046937 0.591953063 zero Group1 315  751  389  75 0.807692308
## 296  0.407411562 0.592588438  one Group1 316  751  389  74 0.810256410
## 1130 0.407379935 0.592620065 zero Group1 316  750  390  74 0.810256410
## 1261 0.407156813 0.592843187 zero Group1 316  749  391  74 0.810256410
## 921  0.405740120 0.594259880 zero Group1 316  748  392  74 0.810256410
## 1490 0.404686705 0.595313295 zero Group1 317  747  393  73 0.812820513
## 1507 0.404686705 0.595313295  one Group1 317  747  393  73 0.812820513
## 726  0.404196956 0.595803044 zero Group1 317  746  394  73 0.812820513
## 653  0.403433273 0.596566727 zero Group1 317  745  395  73 0.812820513
## 510  0.403323363 0.596676637 zero Group1 317  744  396  73 0.812820513
## 175  0.403269678 0.596730322  one Group1 318  744  396  72 0.815384615
## 67   0.403087828 0.596912172  one Group1 319  744  396  71 0.817948718
## 1210 0.402978901 0.597021099 zero Group1 319  743  397  71 0.817948718
## 379  0.402561049 0.597438951  one Group1 320  743  397  70 0.820512821
## 56   0.401680496 0.598319504  one Group1 321  743  397  69 0.823076923
## 253  0.401332816 0.598667184  one Group1 322  743  397  68 0.825641026
## 780  0.400898361 0.599101639 zero Group1 322  742  398  68 0.825641026
## 633  0.400497445 0.599502555 zero Group1 322  741  399  68 0.825641026
## 63   0.400005165 0.599994835 zero Group1 322  740  400  68 0.825641026
## 630  0.399600357 0.600399643 zero Group1 322  739  401  68 0.825641026
## 361  0.397408166 0.602591834 zero Group1 322  738  402  68 0.825641026
## 1481 0.396902678 0.603097322 zero Group1 322  737  403  68 0.825641026
## 860  0.395891266 0.604108734 zero Group1 322  736  404  68 0.825641026
## 289  0.394812380 0.605187620  one Group1 323  736  404  67 0.828205128
## 1245 0.394565629 0.605434371 zero Group1 323  735  405  67 0.828205128
## 271  0.394476835 0.605523165 zero Group1 323  734  406  67 0.828205128
## 658  0.393814294 0.606185706 zero Group1 323  733  407  67 0.828205128
## 345  0.393729681 0.606270319  one Group1 324  733  407  66 0.830769231
## 1032 0.392993212 0.607006788  one Group1 325  733  407  65 0.833333333
## 772  0.391862894 0.608137106 zero Group1 325  732  408  65 0.833333333
## 362  0.390701636 0.609298364 zero Group1 325  731  409  65 0.833333333
## 223  0.390340875 0.609659125 zero Group1 325  730  410  65 0.833333333
## 22   0.390188812 0.609811188 zero Group1 325  729  411  65 0.833333333
## 1038 0.390160597 0.609839403  one Group1 326  729  411  64 0.835897436
## 1460 0.389603772 0.610396228 zero Group1 326  728  412  64 0.835897436
## 214  0.388396923 0.611603077 zero Group1 326  727  413  64 0.835897436
## 1167 0.388042397 0.611957603 zero Group1 326  726  414  64 0.835897436
## 391  0.387851806 0.612148194 zero Group1 326  725  415  64 0.835897436
## 367  0.387718985 0.612281015 zero Group1 326  724  416  64 0.835897436
## 1429 0.387510031 0.612489969 zero Group1 326  723  417  64 0.835897436
## 390  0.387019303 0.612980697 zero Group1 326  722  418  64 0.835897436
## 521  0.386696631 0.613303369 zero Group1 326  721  419  64 0.835897436
## 527  0.386345202 0.613654798 zero Group1 326  720  420  64 0.835897436
## 445  0.385307005 0.614692995 zero Group1 326  719  421  64 0.835897436
## 759  0.384963129 0.615036871 zero Group1 326  718  422  64 0.835897436
## 1113 0.384494014 0.615505986 zero Group1 326  717  423  64 0.835897436
## 1189 0.382799950 0.617200050 zero Group1 326  716  424  64 0.835897436
## 354  0.382776000 0.617224000 zero Group1 326  715  425  64 0.835897436
## 381  0.381866877 0.618133123  one Group1 327  715  425  63 0.838461538
## 360  0.381790809 0.618209191 zero Group1 327  714  426  63 0.838461538
## 444  0.381066234 0.618933766 zero Group1 327  713  427  63 0.838461538
## 599  0.380446959 0.619553041 zero Group1 327  712  428  63 0.838461538
## 1251 0.379777062 0.620222938 zero Group1 327  711  429  63 0.838461538
## 872  0.379147286 0.620852714 zero Group1 327  710  430  63 0.838461538
## 917  0.378917823 0.621082177 zero Group1 327  709  431  63 0.838461538
## 1480 0.378785424 0.621214576 zero Group1 327  708  432  63 0.838461538
## 909  0.377305084 0.622694916 zero Group1 327  707  433  63 0.838461538
## 1459 0.376956381 0.623043619 zero Group1 327  706  434  63 0.838461538
## 603  0.376602856 0.623397144 zero Group1 327  705  435  63 0.838461538
## 326  0.376508787 0.623491213 zero Group1 327  704  436  63 0.838461538
## 1339 0.376384990 0.623615010 zero Group1 327  703  437  63 0.838461538
## 363  0.375395189 0.624604811 zero Group1 327  702  438  63 0.838461538
## 176  0.375323007 0.624676993  one Group1 328  702  438  62 0.841025641
## 315  0.374736955 0.625263045  one Group1 329  702  438  61 0.843589744
## 615  0.374451362 0.625548638 zero Group1 329  701  439  61 0.843589744
## 623  0.374418974 0.625581026 zero Group1 329  700  440  61 0.843589744
## 140  0.372936486 0.627063514  one Group1 330  700  440  60 0.846153846
## 1353 0.372764859 0.627235141 zero Group1 330  699  441  60 0.846153846
## 818  0.372551170 0.627448830 zero Group1 330  698  442  60 0.846153846
## 727  0.372400145 0.627599855 zero Group1 330  697  443  60 0.846153846
## 372  0.372102903 0.627897097  one Group1 331  697  443  59 0.848717949
## 742  0.371106570 0.628893430 zero Group1 331  696  444  59 0.848717949
## 1452 0.369904488 0.630095512 zero Group1 331  695  445  59 0.848717949
## 1518 0.369067087 0.630932913 zero Group1 331  694  446  59 0.848717949
## 676  0.368820949 0.631179051 zero Group1 331  693  447  59 0.848717949
## 533  0.367647964 0.632352036 zero Group1 331  692  448  59 0.848717949
## 771  0.367438496 0.632561504 zero Group1 331  691  449  59 0.848717949
## 1096 0.366155242 0.633844758  one Group1 332  691  449  58 0.851282051
## 343  0.365480087 0.634519913 zero Group1 332  690  450  58 0.851282051
## 1479 0.365102779 0.634897221 zero Group1 332  689  451  58 0.851282051
## 411  0.365097280 0.634902720 zero Group1 332  688  452  58 0.851282051
## 914  0.364445210 0.635554790 zero Group1 332  687  453  58 0.851282051
## 1162 0.362383342 0.637616658 zero Group1 332  686  454  58 0.851282051
## 1204 0.361469572 0.638530428  one Group1 333  686  454  57 0.853846154
## 747  0.360967211 0.639032789 zero Group1 333  685  455  57 0.853846154
## 5    0.360247137 0.639752863  one Group1 334  685  455  56 0.856410256
## 1335 0.359991366 0.640008634 zero Group1 334  684  456  56 0.856410256
## 862  0.359755935 0.640244065 zero Group1 334  683  457  56 0.856410256
## 1268 0.358567688 0.641432312 zero Group1 334  682  458  56 0.856410256
## 1418 0.358473794 0.641526206  one Group1 335  682  458  55 0.858974359
## 92   0.356604874 0.643395126  one Group1 336  682  458  54 0.861538462
## 60   0.355948746 0.644051254  one Group1 337  682  458  53 0.864102564
## 502  0.355044345 0.644955655 zero Group1 337  681  459  53 0.864102564
## 9    0.354920129 0.645079871  one Group1 338  681  459  52 0.866666667
## 107  0.354739614 0.645260386 zero Group1 338  680  460  52 0.866666667
## 670  0.354468004 0.645531996 zero Group1 338  679  461  52 0.866666667
## 1379 0.353368735 0.646631265 zero Group1 338  678  462  52 0.866666667
## 201  0.352809290 0.647190710  one Group1 339  678  462  51 0.869230769
## 1263 0.351781908 0.648218092 zero Group1 339  677  463  51 0.869230769
## 1187 0.351618750 0.648381250 zero Group1 339  676  464  51 0.869230769
## 309  0.351606869 0.648393131 zero Group1 339  675  465  51 0.869230769
## 602  0.351561772 0.648438228 zero Group1 339  674  466  51 0.869230769
## 750  0.351533591 0.648466409 zero Group1 339  673  467  51 0.869230769
## 408  0.349854092 0.650145908 zero Group1 339  672  468  51 0.869230769
## 636  0.349749452 0.650250548 zero Group1 339  671  469  51 0.869230769
## 667  0.349559640 0.650440360 zero Group1 339  670  470  51 0.869230769
## 672  0.349259443 0.650740557 zero Group1 339  669  471  51 0.869230769
## 1157 0.349029251 0.650970749 zero Group1 339  668  472  51 0.869230769
## 1410 0.348244227 0.651755773  one Group1 340  668  472  50 0.871794872
## 121  0.347740244 0.652259756 zero Group1 340  667  473  50 0.871794872
## 929  0.347644438 0.652355562 zero Group1 340  666  474  50 0.871794872
## 592  0.347090711 0.652909289  one Group1 341  666  474  49 0.874358974
## 74   0.345868759 0.654131241 zero Group1 341  665  475  49 0.874358974
## 1352 0.345852113 0.654147887 zero Group1 341  664  476  49 0.874358974
## 731  0.344737600 0.655262400 zero Group1 341  663  477  49 0.874358974
## 14   0.344156467 0.655843533 zero Group1 341  662  478  49 0.874358974
## 1019 0.344015319 0.655984681 zero Group1 341  661  479  49 0.874358974
## 1340 0.343867826 0.656132174 zero Group1 341  660  480  49 0.874358974
## 180  0.343536186 0.656463814  one Group1 342  660  480  48 0.876923077
## 1405 0.343404342 0.656595658 zero Group1 342  659  481  48 0.876923077
## 550  0.343087272 0.656912728 zero Group1 342  658  482  48 0.876923077
## 861  0.342942330 0.657057670 zero Group1 342  657  483  48 0.876923077
## 2    0.341562357 0.658437643 zero Group1 342  656  484  48 0.876923077
## 1205 0.341118256 0.658881744  one Group1 343  656  484  47 0.879487179
## 1394 0.339404580 0.660595420 zero Group1 343  655  485  47 0.879487179
## 248  0.339386804 0.660613196  one Group1 344  655  485  46 0.882051282
## 552  0.339254315 0.660745685 zero Group1 344  654  486  46 0.882051282
## 221  0.338785685 0.661214315 zero Group1 344  653  487  46 0.882051282
## 605  0.338555894 0.661444106 zero Group1 344  652  488  46 0.882051282
## 158  0.337764244 0.662235756 zero Group1 344  651  489  46 0.882051282
## 911  0.335973994 0.664026006 zero Group1 344  650  490  46 0.882051282
## 1015 0.335683772 0.664316228 zero Group1 344  649  491  46 0.882051282
## 1465 0.335501963 0.664498037 zero Group1 344  648  492  46 0.882051282
## 946  0.335131104 0.664868896 zero Group1 344  647  493  46 0.882051282
## 1208 0.335124839 0.664875161 zero Group1 344  646  494  46 0.882051282
## 1310 0.335031456 0.664968544  one Group1 345  646  494  45 0.884615385
## 1275 0.333428799 0.666571201 zero Group1 345  645  495  45 0.884615385
## 120  0.333109794 0.666890206 zero Group1 345  644  496  45 0.884615385
## 993  0.332906623 0.667093377 zero Group1 345  643  497  45 0.884615385
## 582  0.332388087 0.667611913 zero Group1 345  642  498  45 0.884615385
## 1257 0.331438096 0.668561904 zero Group1 345  641  499  45 0.884615385
## 1431 0.330739852 0.669260148 zero Group1 345  640  500  45 0.884615385
## 1280 0.329859816 0.670140184 zero Group1 345  639  501  45 0.884615385
## 1279 0.328308812 0.671691188 zero Group1 345  638  502  45 0.884615385
## 1225 0.328274274 0.671725726 zero Group1 345  637  503  45 0.884615385
## 713  0.327664681 0.672335319 zero Group1 345  636  504  45 0.884615385
## 989  0.327046719 0.672953281 zero Group1 345  635  505  45 0.884615385
## 715  0.325960097 0.674039903 zero Group1 345  634  506  45 0.884615385
## 263  0.324651942 0.675348058 zero Group1 345  633  507  45 0.884615385
## 48   0.324609087 0.675390913 zero Group1 345  632  508  45 0.884615385
## 1491 0.324530548 0.675469452 zero Group1 345  631  509  45 0.884615385
## 567  0.323166901 0.676833099 zero Group1 345  630  510  45 0.884615385
## 1425 0.321012310 0.678987690 zero Group1 345  629  511  45 0.884615385
## 311  0.320153726 0.679846274 zero Group1 345  628  512  45 0.884615385
## 1003 0.319698544 0.680301456  one Group1 346  628  512  44 0.887179487
## 485  0.318839964 0.681160036  one Group1 347  628  512  43 0.889743590
## 1347 0.318825505 0.681174495 zero Group1 347  627  513  43 0.889743590
## 215  0.318734658 0.681265342 zero Group1 347  626  514  43 0.889743590
## 1217 0.318567657 0.681432343 zero Group1 347  625  515  43 0.889743590
## 52   0.318455781 0.681544219 zero Group1 347  624  516  43 0.889743590
## 586  0.317719909 0.682280091  one Group1 348  624  516  42 0.892307692
## 265  0.317235864 0.682764136 zero Group1 348  623  517  42 0.892307692
## 1510 0.316968231 0.683031769  one Group1 349  623  517  41 0.894871795
## 799  0.316800278 0.683199722 zero Group1 349  622  518  41 0.894871795
## 386  0.315394156 0.684605844  one Group1 350  622  518  40 0.897435897
## 1181 0.314290035 0.685709965 zero Group1 350  621  519  40 0.897435897
## 1094 0.313832905 0.686167095  one Group1 351  621  519  39 0.900000000
## 1175 0.312984529 0.687015471 zero Group1 351  620  520  39 0.900000000
## 757  0.312667424 0.687332576 zero Group1 351  619  521  39 0.900000000
## 6    0.312482577 0.687517423 zero Group1 351  618  522  39 0.900000000
## 1446 0.312245549 0.687754451 zero Group1 351  617  523  39 0.900000000
## 897  0.311632961 0.688367039  one Group1 352  617  523  38 0.902564103
## 941  0.311290225 0.688709775 zero Group1 352  616  524  38 0.902564103
## 598  0.307540136 0.692459864 zero Group1 352  615  525  38 0.902564103
## 761  0.307229538 0.692770462 zero Group1 352  614  526  38 0.902564103
## 239  0.306697977 0.693302023 zero Group1 352  613  527  38 0.902564103
## 1440 0.306197360 0.693802640 zero Group1 352  612  528  38 0.902564103
## 976  0.305151106 0.694848894 zero Group1 352  611  529  38 0.902564103
## 796  0.304563953 0.695436047 zero Group1 352  610  530  38 0.902564103
## 613  0.304445337 0.695554663 zero Group1 352  609  531  38 0.902564103
## 693  0.304433101 0.695566899 zero Group1 352  608  532  38 0.902564103
## 1106 0.303606203 0.696393797 zero Group1 352  607  533  38 0.902564103
## 1066 0.303252707 0.696747293 zero Group1 352  606  534  38 0.902564103
## 963  0.302788746 0.697211254 zero Group1 352  605  535  38 0.902564103
## 42   0.302578620 0.697421380  one Group1 353  605  535  37 0.905128205
## 401  0.302254099 0.697745901  one Group1 354  605  535  36 0.907692308
## 1178 0.301833682 0.698166318 zero Group1 354  604  536  36 0.907692308
## 847  0.300921220 0.699078780 zero Group1 354  603  537  36 0.907692308
## 1101 0.300812180 0.699187820 zero Group1 354  602  538  36 0.907692308
## 1104 0.300443170 0.699556830 zero Group1 354  601  539  36 0.907692308
## 525  0.299528207 0.700471793 zero Group1 354  600  540  36 0.907692308
## 1319 0.298878643 0.701121357 zero Group1 354  599  541  36 0.907692308
## 994  0.297632173 0.702367827 zero Group1 354  598  542  36 0.907692308
## 651  0.297504681 0.702495319 zero Group1 354  597  543  36 0.907692308
## 155  0.297209319 0.702790681 zero Group1 354  596  544  36 0.907692308
## 1206 0.296711786 0.703288214 zero Group1 354  595  545  36 0.907692308
## 142  0.295524580 0.704475420 zero Group1 354  594  546  36 0.907692308
## 1100 0.295092505 0.704907495 zero Group1 354  593  547  36 0.907692308
## 62   0.294252751 0.705747249 zero Group1 354  592  548  36 0.907692308
## 549  0.293703408 0.706296592 zero Group1 354  591  549  36 0.907692308
## 328  0.291622931 0.708377069 zero Group1 354  590  550  36 0.907692308
## 509  0.291172304 0.708827696 zero Group1 354  589  551  36 0.907692308
## 492  0.289767340 0.710232660 zero Group1 354  588  552  36 0.907692308
## 1119 0.289229887 0.710770113 zero Group1 354  587  553  36 0.907692308
## 1    0.289136328 0.710863672 zero Group1 354  586  554  36 0.907692308
## 1469 0.287364019 0.712635981 zero Group1 354  585  555  36 0.907692308
## 218  0.286868068 0.713131932 zero Group1 354  584  556  36 0.907692308
## 984  0.286420157 0.713579843 zero Group1 354  583  557  36 0.907692308
## 496  0.286178919 0.713821081 zero Group1 354  582  558  36 0.907692308
## 217  0.285974691 0.714025309  one Group1 355  582  558  35 0.910256410
## 1430 0.285381948 0.714618052 zero Group1 355  581  559  35 0.910256410
## 352  0.285010382 0.714989618  one Group1 356  581  559  34 0.912820513
## 456  0.284012464 0.715987536 zero Group1 356  580  560  34 0.912820513
## 64   0.283586177 0.716413823 zero Group1 356  579  561  34 0.912820513
## 596  0.281900527 0.718099473 zero Group1 356  578  562  34 0.912820513
## 1191 0.278984029 0.721015971 zero Group1 356  577  563  34 0.912820513
## 1242 0.278468065 0.721531935 zero Group1 356  576  564  34 0.912820513
## 1214 0.278231871 0.721768129 zero Group1 356  575  565  34 0.912820513
## 604  0.278204634 0.721795366 zero Group1 356  574  566  34 0.912820513
## 21   0.277367950 0.722632050 zero Group1 356  573  567  34 0.912820513
## 1522 0.276877051 0.723122949 zero Group1 356  572  568  34 0.912820513
## 323  0.276438451 0.723561549 zero Group1 356  571  569  34 0.912820513
## 1050 0.275887241 0.724112759 zero Group1 356  570  570  34 0.912820513
## 131  0.275570456 0.724429544  one Group1 357  570  570  33 0.915384615
## 98   0.275326570 0.724673430  one Group1 358  570  570  32 0.917948718
## 1423 0.275307469 0.724692531 zero Group1 358  569  571  32 0.917948718
## 17   0.274778556 0.725221444  one Group1 359  569  571  31 0.920512821
## 1511 0.274339080 0.725660920  one Group1 360  569  571  30 0.923076923
## 551  0.273504446 0.726495554 zero Group1 360  568  572  30 0.923076923
## 247  0.273357154 0.726642846  one Group1 361  568  572  29 0.925641026
## 937  0.272702262 0.727297738 zero Group1 361  567  573  29 0.925641026
## 213  0.272532981 0.727467019 zero Group1 361  566  574  29 0.925641026
## 204  0.272215870 0.727784130 zero Group1 361  565  575  29 0.925641026
## 980  0.271708293 0.728291707 zero Group1 361  564  576  29 0.925641026
## 915  0.271559565 0.728440435 zero Group1 361  563  577  29 0.925641026
## 906  0.271352104 0.728647896 zero Group1 361  562  578  29 0.925641026
## 910  0.269832011 0.730167989 zero Group1 361  561  579  29 0.925641026
## 709  0.268740157 0.731259843 zero Group1 361  560  580  29 0.925641026
## 109  0.268669825 0.731330175 zero Group1 361  559  581  29 0.925641026
## 325  0.267997294 0.732002706 zero Group1 361  558  582  29 0.925641026
## 957  0.267190192 0.732809808 zero Group1 361  557  583  29 0.925641026
## 830  0.266830003 0.733169997 zero Group1 361  556  584  29 0.925641026
## 259  0.266515874 0.733484126  one Group1 362  556  584  28 0.928205128
## 983  0.265714384 0.734285616 zero Group1 362  555  585  28 0.928205128
## 1259 0.264495602 0.735504398 zero Group1 362  554  586  28 0.928205128
## 1143 0.264052148 0.735947852 zero Group1 362  553  587  28 0.928205128
## 44   0.263841239 0.736158761  one Group1 363  553  587  27 0.930769231
## 206  0.263505823 0.736494177 zero Group1 363  552  588  27 0.930769231
## 1072 0.260363928 0.739636072 zero Group1 363  551  589  27 0.930769231
## 1529 0.259276188 0.740723812 zero Group1 363  550  590  27 0.930769231
## 850  0.259234685 0.740765315 zero Group1 363  549  591  27 0.930769231
## 924  0.257888262 0.742111738 zero Group1 363  548  592  27 0.930769231
## 207  0.257027045 0.742972955 zero Group1 363  547  593  27 0.930769231
## 1463 0.255281358 0.744718642 zero Group1 363  546  594  27 0.930769231
## 91   0.255067091 0.744932909  one Group1 364  546  594  26 0.933333333
## 702  0.253170050 0.746829950 zero Group1 364  545  595  26 0.933333333
## 252  0.252215461 0.747784539  one Group1 365  545  595  25 0.935897436
## 1415 0.252171092 0.747828908  one Group1 366  545  595  24 0.938461538
## 1209 0.250362770 0.749637230 zero Group1 366  544  596  24 0.938461538
## 566  0.249648297 0.750351703 zero Group1 366  543  597  24 0.938461538
## 519  0.249625426 0.750374574 zero Group1 366  542  598  24 0.938461538
## 1382 0.244923450 0.755076550 zero Group1 366  541  599  24 0.938461538
## 101  0.244866434 0.755133566 zero Group1 366  540  600  24 0.938461538
## 1399 0.243440782 0.756559218 zero Group1 366  539  601  24 0.938461538
## 1516 0.243432603 0.756567397 zero Group1 366  538  602  24 0.938461538
## 30   0.243269268 0.756730732 zero Group1 366  537  603  24 0.938461538
## 520  0.241972832 0.758027168 zero Group1 366  536  604  24 0.938461538
## 1503 0.241288581 0.758711419  one Group1 367  536  604  23 0.941025641
## 111  0.238632679 0.761367321 zero Group1 367  535  605  23 0.941025641
## 1328 0.238415646 0.761584354 zero Group1 367  534  606  23 0.941025641
## 779  0.238182586 0.761817414 zero Group1 367  533  607  23 0.941025641
## 1334 0.237911056 0.762088944 zero Group1 367  532  608  23 0.941025641
## 597  0.237632639 0.762367361 zero Group1 367  531  609  23 0.941025641
## 364  0.237254582 0.762745418 zero Group1 367  530  610  23 0.941025641
## 524  0.236671577 0.763328423 zero Group1 367  529  611  23 0.941025641
## 416  0.236509414 0.763490586 zero Group1 367  528  612  23 0.941025641
## 31   0.236407150 0.763592850 zero Group1 367  527  613  23 0.941025641
## 494  0.235129430 0.764870570 zero Group1 367  526  614  23 0.941025641
## 1099 0.234757380 0.765242620 zero Group1 367  525  615  23 0.941025641
## 887  0.233368451 0.766631549  one Group1 368  525  615  22 0.943589744
## 365  0.232184431 0.767815569 zero Group1 368  524  616  22 0.943589744
## 806  0.231101715 0.768898285 zero Group1 368  523  617  22 0.943589744
## 822  0.230598485 0.769401515 zero Group1 368  522  618  22 0.943589744
## 889  0.230341457 0.769658543  one Group1 369  522  618  21 0.946153846
## 1163 0.229443665 0.770556335 zero Group1 369  521  619  21 0.946153846
## 833  0.228870882 0.771129118 zero Group1 369  520  620  21 0.946153846
## 1372 0.228449364 0.771550636 zero Group1 369  519  621  21 0.946153846
## 220  0.227420431 0.772579569 zero Group1 369  518  622  21 0.946153846
## 1081 0.227200004 0.772799996 zero Group1 369  517  623  21 0.946153846
## 25   0.226865611 0.773134389 zero Group1 369  516  624  21 0.946153846
## 664  0.226630772 0.773369228 zero Group1 369  515  625  21 0.946153846
## 27   0.224862883 0.775137117 zero Group1 369  514  626  21 0.946153846
## 935  0.224253776 0.775746224 zero Group1 369  513  627  21 0.946153846
## 1292 0.223595363 0.776404637 zero Group1 369  512  628  21 0.946153846
## 707  0.223307622 0.776692378 zero Group1 369  511  629  21 0.946153846
## 1042 0.223032124 0.776967876  one Group1 370  511  629  20 0.948717949
## 1080 0.222482165 0.777517835 zero Group1 370  510  630  20 0.948717949
## 1147 0.221526159 0.778473841 zero Group1 370  509  631  20 0.948717949
## 992  0.220845067 0.779154933 zero Group1 370  508  632  20 0.948717949
## 1132 0.220370392 0.779629608 zero Group1 370  507  633  20 0.948717949
## 825  0.219281852 0.780718148 zero Group1 370  506  634  20 0.948717949
## 828  0.219084970 0.780915030 zero Group1 370  505  635  20 0.948717949
## 1012 0.218880799 0.781119201 zero Group1 370  504  636  20 0.948717949
## 424  0.218167915 0.781832085 zero Group1 370  503  637  20 0.948717949
## 561  0.218095749 0.781904251 zero Group1 370  502  638  20 0.948717949
## 1048 0.217620359 0.782379641 zero Group1 370  501  639  20 0.948717949
## 1276 0.217607179 0.782392821 zero Group1 370  500  640  20 0.948717949
## 665  0.216943283 0.783056717 zero Group1 370  499  641  20 0.948717949
## 974  0.215395233 0.784604767 zero Group1 370  498  642  20 0.948717949
## 250  0.215309701 0.784690299  one Group1 371  498  642  19 0.951282051
## 1434 0.215057442 0.784942558 zero Group1 371  497  643  19 0.951282051
## 226  0.214161266 0.785838734 zero Group1 371  496  644  19 0.951282051
## 1077 0.213383521 0.786616479 zero Group1 371  495  645  19 0.951282051
## 661  0.212988085 0.787011915 zero Group1 371  494  646  19 0.951282051
## 437  0.211782778 0.788217222  one Group1 372  494  646  18 0.953846154
## 967  0.210593471 0.789406529 zero Group1 372  493  647  18 0.953846154
## 730  0.210334701 0.789665299 zero Group1 372  492  648  18 0.953846154
## 196  0.210234768 0.789765232  one Group1 373  492  648  17 0.956410256
## 1348 0.209533894 0.790466106 zero Group1 373  491  649  17 0.956410256
## 660  0.207912895 0.792087105 zero Group1 373  490  650  17 0.956410256
## 798  0.207545467 0.792454533 zero Group1 373  489  651  17 0.956410256
## 691  0.207345008 0.792654992 zero Group1 373  488  652  17 0.956410256
## 814  0.206905498 0.793094502 zero Group1 373  487  653  17 0.956410256
## 1172 0.204994602 0.795005398 zero Group1 373  486  654  17 0.956410256
## 1165 0.203820922 0.796179078 zero Group1 373  485  655  17 0.956410256
## 1272 0.203672236 0.796327764 zero Group1 373  484  656  17 0.956410256
## 812  0.203106262 0.796893738 zero Group1 373  483  657  17 0.956410256
## 1274 0.203102718 0.796897282 zero Group1 373  482  658  17 0.956410256
## 143  0.203078539 0.796921461  one Group1 374  482  658  16 0.958974359
## 824  0.200473222 0.799526778 zero Group1 374  481  659  16 0.958974359
## 663  0.200436457 0.799563543 zero Group1 374  480  660  16 0.958974359
## 1270 0.199871759 0.800128241 zero Group1 374  479  661  16 0.958974359
## 881  0.199407933 0.800592067 zero Group1 374  478  662  16 0.958974359
## 1351 0.199341653 0.800658347 zero Group1 374  477  663  16 0.958974359
## 197  0.199243614 0.800756386  one Group1 375  477  663  15 0.961538462
## 1271 0.198247344 0.801752656 zero Group1 375  476  664  15 0.961538462
## 829  0.197071653 0.802928347 zero Group1 375  475  665  15 0.961538462
## 626  0.196416606 0.803583394 zero Group1 375  474  666  15 0.961538462
## 1332 0.195823569 0.804176431 zero Group1 375  473  667  15 0.961538462
## 275  0.195357067 0.804642933 zero Group1 375  472  668  15 0.961538462
## 1169 0.194247108 0.805752892 zero Group1 375  471  669  15 0.961538462
## 1171 0.192794163 0.807205837 zero Group1 375  470  670  15 0.961538462
## 1349 0.192719321 0.807280679 zero Group1 375  469  671  15 0.961538462
## 826  0.192513699 0.807486301 zero Group1 375  468  672  15 0.961538462
## 1142 0.191036644 0.808963356 zero Group1 375  467  673  15 0.961538462
## 1170 0.190978681 0.809021319 zero Group1 375  466  674  15 0.961538462
## 1173 0.190598310 0.809401690 zero Group1 375  465  675  15 0.961538462
## 1067 0.190284169 0.809715831 zero Group1 375  464  676  15 0.961538462
## 254  0.189499885 0.810500115  one Group1 376  464  676  14 0.964102564
## 449  0.189492691 0.810507309 zero Group1 376  463  677  14 0.964102564
## 227  0.188884388 0.811115612 zero Group1 376  462  678  14 0.964102564
## 225  0.188827426 0.811172574 zero Group1 376  461  679  14 0.964102564
## 655  0.188248577 0.811751423 zero Group1 376  460  680  14 0.964102564
## 47   0.187569996 0.812430004 zero Group1 376  459  681  14 0.964102564
## 827  0.187113687 0.812886313 zero Group1 376  458  682  14 0.964102564
## 335  0.185621472 0.814378528 zero Group1 376  457  683  14 0.964102564
## 1013 0.185500275 0.814499725 zero Group1 376  456  684  14 0.964102564
## 692  0.185375624 0.814624376 zero Group1 376  455  685  14 0.964102564
## 1168 0.184772890 0.815227110 zero Group1 376  454  686  14 0.964102564
## 933  0.183945714 0.816054286 zero Group1 376  453  687  14 0.964102564
## 557  0.183332494 0.816667506 zero Group1 376  452  688  14 0.964102564
## 1121 0.183285994 0.816714006 zero Group1 376  451  689  14 0.964102564
## 554  0.183220526 0.816779474 zero Group1 376  450  690  14 0.964102564
## 556  0.182960561 0.817039439 zero Group1 376  449  691  14 0.964102564
## 1369 0.182345604 0.817654396 zero Group1 376  448  692  14 0.964102564
## 619  0.181388943 0.818611057 zero Group1 376  447  693  14 0.964102564
## 880  0.181221383 0.818778617 zero Group1 376  446  694  14 0.964102564
## 1059 0.180819435 0.819180565 zero Group1 376  445  695  14 0.964102564
## 439  0.177161563 0.822838437 zero Group1 376  444  696  14 0.964102564
## 560  0.177012245 0.822987755 zero Group1 376  443  697  14 0.964102564
## 1466 0.176956107 0.823043893 zero Group1 376  442  698  14 0.964102564
## 559  0.176615155 0.823384845 zero Group1 376  441  699  14 0.964102564
## 1123 0.176247190 0.823752810 zero Group1 376  440  700  14 0.964102564
## 971  0.176213679 0.823786321 zero Group1 376  439  701  14 0.964102564
## 662  0.176104083 0.823895917 zero Group1 376  438  702  14 0.964102564
## 893  0.175843775 0.824156225  one Group1 377  438  702  13 0.966666667
## 1125 0.174514937 0.825485063 zero Group1 377  437  703  13 0.966666667
## 303  0.174397554 0.825602446  one Group1 378  437  703  12 0.969230769
## 682  0.172779137 0.827220863 zero Group1 378  436  704  12 0.969230769
## 1496 0.172677847 0.827322153 zero Group1 378  435  705  12 0.969230769
## 1138 0.171731609 0.828268391 zero Group1 378  434  706  12 0.969230769
## 908  0.169844961 0.830155039 zero Group1 378  433  707  12 0.969230769
## 831  0.169781427 0.830218573 zero Group1 378  432  708  12 0.969230769
## 427  0.169391571 0.830608429 zero Group1 378  431  709  12 0.969230769
## 859  0.169372715 0.830627285 zero Group1 378  430  710  12 0.969230769
## 324  0.168529175 0.831470825 zero Group1 378  429  711  12 0.969230769
## 41   0.167904362 0.832095638 zero Group1 378  428  712  12 0.969230769
## 873  0.163922300 0.836077700 zero Group1 378  427  713  12 0.969230769
## 681  0.163658877 0.836341123 zero Group1 378  426  714  12 0.969230769
## 666  0.162378888 0.837621112 zero Group1 378  425  715  12 0.969230769
## 1358 0.161839364 0.838160636 zero Group1 378  424  716  12 0.969230769
## 721  0.161181301 0.838818699 zero Group1 378  423  717  12 0.969230769
## 553  0.160099975 0.839900025 zero Group1 378  422  718  12 0.969230769
## 273  0.159851815 0.840148185 zero Group1 378  421  719  12 0.969230769
## 1083 0.159722428 0.840277572 zero Group1 378  420  720  12 0.969230769
## 412  0.159160092 0.840839908 zero Group1 378  419  721  12 0.969230769
## 722  0.158758618 0.841241382 zero Group1 378  418  722  12 0.969230769
## 3    0.158722371 0.841277629 zero Group1 378  417  723  12 0.969230769
## 1014 0.158311993 0.841688007 zero Group1 378  416  724  12 0.969230769
## 777  0.156826526 0.843173474 zero Group1 378  415  725  12 0.969230769
## 454  0.155232899 0.844767101 zero Group1 378  414  726  12 0.969230769
## 720  0.154251107 0.845748893 zero Group1 378  413  727  12 0.969230769
## 926  0.153951205 0.846048795 zero Group1 378  412  728  12 0.969230769
## 1047 0.153900061 0.846099939 zero Group1 378  411  729  12 0.969230769
## 899  0.153501783 0.846498217  one Group1 379  411  729  11 0.971794872
## 327  0.153399156 0.846600844 zero Group1 379  410  730  11 0.971794872
## 164  0.153346444 0.846653556 zero Group1 379  409  731  11 0.971794872
## 1401 0.153001108 0.846998892 zero Group1 379  408  732  11 0.971794872
## 958  0.152746044 0.847253956 zero Group1 379  407  733  11 0.971794872
## 1345 0.152356910 0.847643090 zero Group1 379  406  734  11 0.971794872
## 896  0.152269855 0.847730145  one Group1 380  406  734  10 0.974358974
## 1329 0.151615844 0.848384156 zero Group1 380  405  735  10 0.974358974
## 809  0.149885009 0.850114991 zero Group1 380  404  736  10 0.974358974
## 627  0.149807985 0.850192015 zero Group1 380  403  737  10 0.974358974
## 1323 0.149497006 0.850502994 zero Group1 380  402  738  10 0.974358974
## 973  0.148876344 0.851123656 zero Group1 380  401  739  10 0.974358974
## 581  0.148474217 0.851525783 zero Group1 380  400  740  10 0.974358974
## 1322 0.147785323 0.852214677 zero Group1 380  399  741  10 0.974358974
## 883  0.147147450 0.852852550 zero Group1 380  398  742  10 0.974358974
## 970  0.146918694 0.853081306 zero Group1 380  397  743  10 0.974358974
## 975  0.146840951 0.853159049 zero Group1 380  396  744  10 0.974358974
## 930  0.146508945 0.853491055 zero Group1 380  395  745  10 0.974358974
## 647  0.146400986 0.853599014 zero Group1 380  394  746  10 0.974358974
## 1514 0.145530328 0.854469672 zero Group1 380  393  747  10 0.974358974
## 1400 0.145456580 0.854543420 zero Group1 380  392  748  10 0.974358974
## 570  0.144744104 0.855255896 zero Group1 380  391  749  10 0.974358974
## 934  0.144727703 0.855272297 zero Group1 380  390  750  10 0.974358974
## 765  0.144646834 0.855353166 zero Group1 380  389  751  10 0.974358974
## 1219 0.144450147 0.855549853 zero Group1 380  388  752  10 0.974358974
## 452  0.144403030 0.855596970 zero Group1 380  387  753  10 0.974358974
## 754  0.143568292 0.856431708 zero Group1 380  386  754  10 0.974358974
## 1391 0.143479035 0.856520965 zero Group1 380  385  755  10 0.974358974
## 1366 0.143019073 0.856980927 zero Group1 380  384  756  10 0.974358974
## 35   0.141428561 0.858571439 zero Group1 380  383  757  10 0.974358974
## 1346 0.140347110 0.859652890 zero Group1 380  382  758  10 0.974358974
## 610  0.140179875 0.859820125 zero Group1 380  381  759  10 0.974358974
## 418  0.140164113 0.859835887 zero Group1 380  380  760  10 0.974358974
## 1061 0.139812302 0.860187698 zero Group1 380  379  761  10 0.974358974
## 1247 0.139097665 0.860902335 zero Group1 380  378  762  10 0.974358974
## 838  0.139016042 0.860983958 zero Group1 380  377  763  10 0.974358974
## 972  0.138602108 0.861397892 zero Group1 380  376  764  10 0.974358974
## 450  0.138587045 0.861412955 zero Group1 380  375  765  10 0.974358974
## 526  0.138172045 0.861827955 zero Group1 380  374  766  10 0.974358974
## 755  0.137993716 0.862006284 zero Group1 380  373  767  10 0.974358974
## 1437 0.137551274 0.862448726 zero Group1 380  372  768  10 0.974358974
## 1129 0.137396608 0.862603392 zero Group1 380  371  769  10 0.974358974
## 505  0.137299986 0.862700014 zero Group1 380  370  770  10 0.974358974
## 477  0.137192020 0.862807980  one Group1 381  370  770   9 0.976923077
## 1152 0.137151738 0.862848262 zero Group1 381  369  771   9 0.976923077
## 37   0.136963159 0.863036841 zero Group1 381  368  772   9 0.976923077
## 1010 0.136213375 0.863786625 zero Group1 381  367  773   9 0.976923077
## 463  0.135948906 0.864051094 zero Group1 381  366  774   9 0.976923077
## 932  0.135523660 0.864476340 zero Group1 381  365  775   9 0.976923077
## 901  0.135380253 0.864619747 zero Group1 381  364  776   9 0.976923077
## 489  0.135248372 0.864751628 zero Group1 381  363  777   9 0.976923077
## 919  0.134802323 0.865197677 zero Group1 381  362  778   9 0.976923077
## 231  0.134793443 0.865206557  one Group1 382  362  778   8 0.979487179
## 1135 0.134504076 0.865495924 zero Group1 382  361  779   8 0.979487179
## 1182 0.134465098 0.865534902 zero Group1 382  360  780   8 0.979487179
## 579  0.134312975 0.865687025 zero Group1 382  359  781   8 0.979487179
## 1131 0.134232108 0.865767892 zero Group1 382  358  782   8 0.979487179
## 34   0.133856823 0.866143177 zero Group1 382  357  783   8 0.979487179
## 625  0.133831996 0.866168004 zero Group1 382  356  784   8 0.979487179
## 1286 0.132961715 0.867038285 zero Group1 382  355  785   8 0.979487179
## 1356 0.132657761 0.867342239 zero Group1 382  354  786   8 0.979487179
## 950  0.132618066 0.867381934 zero Group1 382  353  787   8 0.979487179
## 884  0.132510900 0.867489100 zero Group1 382  352  788   8 0.979487179
## 1114 0.131562761 0.868437239 zero Group1 382  351  789   8 0.979487179
## 1111 0.129999481 0.870000519 zero Group1 382  350  790   8 0.979487179
## 1287 0.129854016 0.870145984 zero Group1 382  349  791   8 0.979487179
## 1363 0.129641886 0.870358114 zero Group1 382  348  792   8 0.979487179
## 718  0.129037666 0.870962334 zero Group1 382  347  793   8 0.979487179
## 1118 0.128983295 0.871016705 zero Group1 382  346  794   8 0.979487179
## 1294 0.128720516 0.871279484 zero Group1 382  345  795   8 0.979487179
## 1499 0.128646460 0.871353540  one Group1 383  345  795   7 0.982051282
## 1512 0.127283494 0.872716506 zero Group1 383  344  796   7 0.982051282
## 1296 0.127087325 0.872912675 zero Group1 383  343  797   7 0.982051282
## 426  0.126396930 0.873603070 zero Group1 383  342  798   7 0.982051282
## 624  0.125791303 0.874208697 zero Group1 383  341  799   7 0.982051282
## 821  0.125438468 0.874561532 zero Group1 383  340  800   7 0.982051282
## 1008 0.124779376 0.875220624 zero Group1 383  339  801   7 0.982051282
## 1149 0.123152727 0.876847273 zero Group1 383  338  802   7 0.982051282
## 753  0.122671298 0.877328702 zero Group1 383  337  803   7 0.982051282
## 1454 0.122268339 0.877731661 zero Group1 383  336  804   7 0.982051282
## 1273 0.121883171 0.878116829 zero Group1 383  335  805   7 0.982051282
## 467  0.121514261 0.878485739 zero Group1 383  334  806   7 0.982051282
## 573  0.121275501 0.878724499 zero Group1 383  333  807   7 0.982051282
## 110  0.121016898 0.878983102 zero Group1 383  332  808   7 0.982051282
## 1487 0.120835801 0.879164199 zero Group1 383  331  809   7 0.982051282
## 1435 0.119370279 0.880629721 zero Group1 383  330  810   7 0.982051282
## 1436 0.119143974 0.880856026 zero Group1 383  329  811   7 0.982051282
## 322  0.119028393 0.880971607 zero Group1 383  328  812   7 0.982051282
## 1433 0.118628900 0.881371100 zero Group1 383  327  813   7 0.982051282
## 1515 0.118469700 0.881530300 zero Group1 383  326  814   7 0.982051282
## 778  0.118297213 0.881702787 zero Group1 383  325  815   7 0.982051282
## 537  0.118241521 0.881758479 zero Group1 383  324  816   7 0.982051282
## 1249 0.118016775 0.881983225 zero Group1 383  323  817   7 0.982051282
## 719  0.117878812 0.882121188 zero Group1 383  322  818   7 0.982051282
## 768  0.117704098 0.882295902 zero Group1 383  321  819   7 0.982051282
## 1376 0.117092300 0.882907700 zero Group1 383  320  820   7 0.982051282
## 769  0.116561000 0.883439000 zero Group1 383  319  821   7 0.982051282
## 451  0.116418202 0.883581798 zero Group1 383  318  822   7 0.982051282
## 1476 0.116324876 0.883675124 zero Group1 383  317  823   7 0.982051282
## 471  0.116114058 0.883885942 zero Group1 383  316  824   7 0.982051282
## 1126 0.115266565 0.884733435 zero Group1 383  315  825   7 0.982051282
## 1438 0.114925144 0.885074856 zero Group1 383  314  826   7 0.982051282
## 1184 0.114895415 0.885104585 zero Group1 383  313  827   7 0.982051282
## 987  0.114218099 0.885781901 zero Group1 383  312  828   7 0.982051282
## 1381 0.113586597 0.886413403 zero Group1 383  311  829   7 0.982051282
## 506  0.113578932 0.886421068 zero Group1 383  310  830   7 0.982051282
## 1448 0.113415543 0.886584457 zero Group1 383  309  831   7 0.982051282
## 628  0.113297434 0.886702566 zero Group1 383  308  832   7 0.982051282
## 1137 0.112775915 0.887224085 zero Group1 383  307  833   7 0.982051282
## 53   0.111727130 0.888272870 zero Group1 383  306  834   7 0.982051282
## 843  0.111612347 0.888387653 zero Group1 383  305  835   7 0.982051282
## 600  0.111541020 0.888458980 zero Group1 383  304  836   7 0.982051282
## 1473 0.110947744 0.889052256 zero Group1 383  303  837   7 0.982051282
## 1062 0.110828829 0.889171171 zero Group1 383  302  838   7 0.982051282
## 1325 0.110536716 0.889463284 zero Group1 383  301  839   7 0.982051282
## 1161 0.110291527 0.889708473 zero Group1 383  300  840   7 0.982051282
## 438  0.110048112 0.889951888 zero Group1 383  299  841   7 0.982051282
## 1489 0.110012099 0.889987901 zero Group1 383  298  842   7 0.982051282
## 1513 0.109204039 0.890795961 zero Group1 383  297  843   7 0.982051282
## 470  0.108416688 0.891583312 zero Group1 383  296  844   7 0.982051282
## 639  0.107686735 0.892313265 zero Group1 383  295  845   7 0.982051282
## 417  0.107240878 0.892759122 zero Group1 383  294  846   7 0.982051282
## 648  0.105606736 0.894393264 zero Group1 383  293  847   7 0.982051282
## 464  0.105276790 0.894723210 zero Group1 383  292  848   7 0.982051282
## 1380 0.105055991 0.894944009 zero Group1 383  291  849   7 0.982051282
## 415  0.104862171 0.895137829 zero Group1 383  290  850   7 0.982051282
## 414  0.104699460 0.895300540 zero Group1 383  289  851   7 0.982051282
## 733  0.104556921 0.895443079 zero Group1 383  288  852   7 0.982051282
## 684  0.104271616 0.895728384 zero Group1 383  287  853   7 0.982051282
## 1065 0.104226453 0.895773547 zero Group1 383  286  854   7 0.982051282
## 420  0.103870250 0.896129750 zero Group1 383  285  855   7 0.982051282
## 230  0.103344078 0.896655922 zero Group1 383  284  856   7 0.982051282
## 442  0.102885307 0.897114693 zero Group1 383  283  857   7 0.982051282
## 745  0.102615737 0.897384263 zero Group1 383  282  858   7 0.982051282
## 1023 0.102488788 0.897511212 zero Group1 383  281  859   7 0.982051282
## 1258 0.102470068 0.897529932 zero Group1 383  280  860   7 0.982051282
## 678  0.102267854 0.897732146 zero Group1 383  279  861   7 0.982051282
## 290  0.101509334 0.898490666  one Group1 384  279  861   6 0.984615385
## 949  0.101415839 0.898584161 zero Group1 384  278  862   6 0.984615385
## 541  0.101292773 0.898707227 zero Group1 384  277  863   6 0.984615385
## 539  0.100867663 0.899132337 zero Group1 384  276  864   6 0.984615385
## 612  0.100621996 0.899378004 zero Group1 384  275  865   6 0.984615385
## 863  0.100307456 0.899692544 zero Group1 384  274  866   6 0.984615385
## 877  0.099928581 0.900071419 zero Group1 384  273  867   6 0.984615385
## 1350 0.099859907 0.900140093 zero Group1 384  272  868   6 0.984615385
## 1455 0.099073183 0.900926817 zero Group1 384  271  869   6 0.984615385
## 1450 0.098696579 0.901303421 zero Group1 384  270  870   6 0.984615385
## 497  0.098401026 0.901598974 zero Group1 384  269  871   6 0.984615385
## 1422 0.098095032 0.901904968 zero Group1 384  268  872   6 0.984615385
## 1378 0.097645160 0.902354840 zero Group1 384  267  873   6 0.984615385
## 57   0.097585701 0.902414299 zero Group1 384  266  874   6 0.984615385
## 1021 0.097376841 0.902623159 zero Group1 384  265  875   6 0.984615385
## 1231 0.097189740 0.902810260 zero Group1 384  264  876   6 0.984615385
## 1457 0.096521296 0.903478704 zero Group1 384  263  877   6 0.984615385
## 622  0.096269853 0.903730147 zero Group1 384  262  878   6 0.984615385
## 13   0.095056836 0.904943164 zero Group1 384  261  879   6 0.984615385
## 805  0.094749023 0.905250977 zero Group1 384  260  880   6 0.984615385
## 640  0.093590457 0.906409543 zero Group1 384  259  881   6 0.984615385
## 474  0.093512783 0.906487217 zero Group1 384  258  882   6 0.984615385
## 1223 0.091959541 0.908040459 zero Group1 384  257  883   6 0.984615385
## 736  0.091070883 0.908929117 zero Group1 384  256  884   6 0.984615385
## 1060 0.090555243 0.909444757 zero Group1 384  255  885   6 0.984615385
## 646  0.090550574 0.909449426 zero Group1 384  254  886   6 0.984615385
## 1524 0.089822270 0.910177730 zero Group1 384  253  887   6 0.984615385
## 1256 0.089163909 0.910836091 zero Group1 384  252  888   6 0.984615385
## 955  0.089109501 0.910890499 zero Group1 384  251  889   6 0.984615385
## 867  0.088689238 0.911310762 zero Group1 384  250  890   6 0.984615385
## 677  0.088558998 0.911441002 zero Group1 384  249  891   6 0.984615385
## 523  0.088313078 0.911686922 zero Group1 384  248  892   6 0.984615385
## 1427 0.088308189 0.911691811 zero Group1 384  247  893   6 0.984615385
## 368  0.088239297 0.911760703  one Group1 385  247  893   5 0.987179487
## 686  0.087955735 0.912044265 zero Group1 385  246  894   5 0.987179487
## 804  0.087764862 0.912235138 zero Group1 385  245  895   5 0.987179487
## 1221 0.087678324 0.912321676 zero Group1 385  244  896   5 0.987179487
## 136  0.087644724 0.912355276  one Group1 386  244  896   4 0.989743590
## 428  0.087385321 0.912614679  one Group1 387  244  896   3 0.992307692
## 864  0.086999244 0.913000756 zero Group1 387  243  897   3 0.992307692
## 1495 0.086491807 0.913508193 zero Group1 387  242  898   3 0.992307692
## 905  0.086458054 0.913541946 zero Group1 387  241  899   3 0.992307692
## 694  0.086382100 0.913617900 zero Group1 387  240  900   3 0.992307692
## 611  0.086198722 0.913801278 zero Group1 387  239  901   3 0.992307692
## 403  0.085300877 0.914699123 zero Group1 387  238  902   3 0.992307692
## 680  0.085232072 0.914767928 zero Group1 387  237  903   3 0.992307692
## 84   0.083521054 0.916478946 zero Group1 387  236  904   3 0.992307692
## 341  0.082106304 0.917893696 zero Group1 387  235  905   3 0.992307692
## 1026 0.081696882 0.918303118 zero Group1 387  234  906   3 0.992307692
## 706  0.081662596 0.918337404 zero Group1 387  233  907   3 0.992307692
## 543  0.081318695 0.918681305 zero Group1 387  232  908   3 0.992307692
## 904  0.081207781 0.918792219 zero Group1 387  231  909   3 0.992307692
## 1064 0.080213707 0.919786293 zero Group1 387  230  910   3 0.992307692
## 406  0.079887022 0.920112978 zero Group1 387  229  911   3 0.992307692
## 183  0.079591202 0.920408798 zero Group1 387  228  912   3 0.992307692
## 10   0.079478219 0.920521781 zero Group1 387  227  913   3 0.992307692
## 740  0.079362801 0.920637199 zero Group1 387  226  914   3 0.992307692
## 1227 0.078623931 0.921376069 zero Group1 387  225  915   3 0.992307692
## 1027 0.078438072 0.921561928 zero Group1 387  224  916   3 0.992307692
## 956  0.078331522 0.921668478 zero Group1 387  223  917   3 0.992307692
## 1426 0.077942807 0.922057193 zero Group1 387  222  918   3 0.992307692
## 1237 0.077878528 0.922121472 zero Group1 387  221  919   3 0.992307692
## 1365 0.076869372 0.923130628 zero Group1 387  220  920   3 0.992307692
## 43   0.076739914 0.923260086 zero Group1 387  219  921   3 0.992307692
## 1493 0.076665140 0.923334860 zero Group1 387  218  922   3 0.992307692
## 865  0.076589054 0.923410946 zero Group1 387  217  923   3 0.992307692
## 767  0.076529517 0.923470483 zero Group1 387  216  924   3 0.992307692
## 457  0.076252681 0.923747319 zero Group1 387  215  925   3 0.992307692
## 1497 0.076157787 0.923842213 zero Group1 387  214  926   3 0.992307692
## 469  0.075884379 0.924115621 zero Group1 387  213  927   3 0.992307692
## 1239 0.075408572 0.924591428 zero Group1 387  212  928   3 0.992307692
## 455  0.075052813 0.924947187 zero Group1 387  211  929   3 0.992307692
## 269  0.074895567 0.925104433 zero Group1 387  210  930   3 0.992307692
## 902  0.074875170 0.925124830 zero Group1 387  209  931   3 0.992307692
## 711  0.074624304 0.925375696 zero Group1 387  208  932   3 0.992307692
## 184  0.074390556 0.925609444 zero Group1 387  207  933   3 0.992307692
## 1364 0.072293829 0.927706171 zero Group1 387  206  934   3 0.992307692
## 422  0.071967909 0.928032091 zero Group1 387  205  935   3 0.992307692
## 423  0.070838461 0.929161539 zero Group1 387  204  936   3 0.992307692
## 332  0.070826271 0.929173729 zero Group1 387  203  937   3 0.992307692
## 1112 0.070638090 0.929361910 zero Group1 387  202  938   3 0.992307692
## 1043 0.070329550 0.929670450 zero Group1 387  201  939   3 0.992307692
## 1344 0.070052897 0.929947103 zero Group1 387  200  940   3 0.992307692
## 776  0.069839022 0.930160978 zero Group1 387  199  941   3 0.992307692
## 425  0.069693179 0.930306821 zero Group1 387  198  942   3 0.992307692
## 1233 0.069326333 0.930673667 zero Group1 387  197  943   3 0.992307692
## 1475 0.069263917 0.930736083 zero Group1 387  196  944   3 0.992307692
## 1232 0.069177597 0.930822403 zero Group1 387  195  945   3 0.992307692
## 500  0.069172969 0.930827031 zero Group1 387  194  946   3 0.992307692
## 1236 0.069004433 0.930995567 zero Group1 387  193  947   3 0.992307692
## 1235 0.068961401 0.931038599 zero Group1 387  192  948   3 0.992307692
## 133  0.068951886 0.931048114 zero Group1 387  191  949   3 0.992307692
## 1526 0.068786255 0.931213745 zero Group1 387  190  950   3 0.992307692
## 320  0.068620771 0.931379229 zero Group1 387  189  951   3 0.992307692
## 97   0.068263912 0.931736088 zero Group1 387  188  952   3 0.992307692
## 1477 0.068046656 0.931953344 zero Group1 387  187  953   3 0.992307692
## 1117 0.067708673 0.932291327 zero Group1 387  186  954   3 0.992307692
## 310  0.067398962 0.932601038 zero Group1 387  185  955   3 0.992307692
## 817  0.067133275 0.932866725 zero Group1 387  184  956   3 0.992307692
## 1472 0.066303755 0.933696245 zero Group1 387  183  957   3 0.992307692
## 1494 0.065668831 0.934331169 zero Group1 387  182  958   3 0.992307692
## 1082 0.064525186 0.935474814 zero Group1 387  181  959   3 0.992307692
## 607  0.064446284 0.935553716 zero Group1 387  180  960   3 0.992307692
## 1220 0.064180676 0.935819324 zero Group1 387  179  961   3 0.992307692
## 59   0.063981909 0.936018091 zero Group1 387  178  962   3 0.992307692
## 1255 0.063027266 0.936972734 zero Group1 387  177  963   3 0.992307692
## 1470 0.062661389 0.937338611 zero Group1 387  176  964   3 0.992307692
## 1527 0.062400941 0.937599059 zero Group1 387  175  965   3 0.992307692
## 866  0.062302135 0.937697865 zero Group1 387  174  966   3 0.992307692
## 900  0.062174541 0.937825459 zero Group1 387  173  967   3 0.992307692
## 468  0.061996986 0.938003014 zero Group1 387  172  968   3 0.992307692
## 1295 0.061646139 0.938353861 zero Group1 387  171  969   3 0.992307692
## 918  0.061578899 0.938421101 zero Group1 387  170  970   3 0.992307692
## 499  0.061249797 0.938750203 zero Group1 387  169  971   3 0.992307692
## 1471 0.060962346 0.939037654 zero Group1 387  168  972   3 0.992307692
## 1291 0.060551389 0.939448611 zero Group1 387  167  973   3 0.992307692
## 1297 0.060497941 0.939502059 zero Group1 387  166  974   3 0.992307692
## 339  0.060360002 0.939639998 zero Group1 387  165  975   3 0.992307692
## 724  0.059980576 0.940019424 zero Group1 387  164  976   3 0.992307692
## 1293 0.059826016 0.940173984 zero Group1 387  163  977   3 0.992307692
## 775  0.059551752 0.940448248 zero Group1 387  162  978   3 0.992307692
## 609  0.059517877 0.940482123 zero Group1 387  161  979   3 0.992307692
## 1022 0.059174467 0.940825533 zero Group1 387  160  980   3 0.992307692
## 735  0.058859854 0.941140146 zero Group1 387  159  981   3 0.992307692
## 652  0.058794405 0.941205595 zero Group1 387  158  982   3 0.992307692
## 990  0.058529982 0.941470018 zero Group1 387  157  983   3 0.992307692
## 1290 0.058325671 0.941674329 zero Group1 387  156  984   3 0.992307692
## 1207 0.057952313 0.942047687 zero Group1 387  155  985   3 0.992307692
## 466  0.057457766 0.942542234 zero Group1 387  154  986   3 0.992307692
## 705  0.057335809 0.942664191 zero Group1 387  153  987   3 0.992307692
## 659  0.057276930 0.942723070 zero Group1 387  152  988   3 0.992307692
## 1269 0.056307412 0.943692588 zero Group1 387  151  989   3 0.992307692
## 340  0.055111456 0.944888544 zero Group1 387  150  990   3 0.992307692
## 330  0.054824089 0.945175911 zero Group1 387  149  991   3 0.992307692
## 969  0.053804618 0.946195382 zero Group1 387  148  992   3 0.992307692
## 1377 0.053436387 0.946563613 zero Group1 387  147  993   3 0.992307692
## 1030 0.053402816 0.946597184  one Group1 388  147  993   2 0.994871795
## 810  0.053342596 0.946657404 zero Group1 388  146  994   2 0.994871795
## 1116 0.053311066 0.946688934 zero Group1 388  145  995   2 0.994871795
## 988  0.053244960 0.946755040 zero Group1 388  144  996   2 0.994871795
## 358  0.053022923 0.946977077 zero Group1 388  143  997   2 0.994871795
## 948  0.052929094 0.947070906 zero Group1 388  142  998   2 0.994871795
## 1357 0.052799601 0.947200399 zero Group1 388  141  999   2 0.994871795
## 333  0.052780665 0.947219335 zero Group1 388  140 1000   2 0.994871795
## 852  0.052581989 0.947418011 zero Group1 388  139 1001   2 0.994871795
## 1218 0.052453247 0.947546753 zero Group1 388  138 1002   2 0.994871795
## 1517 0.052354952 0.947645048 zero Group1 388  137 1003   2 0.994871795
## 578  0.052032171 0.947967829 zero Group1 388  136 1004   2 0.994871795
## 580  0.051793406 0.948206594 zero Group1 388  135 1005   2 0.994871795
## 617  0.051290048 0.948709952 zero Group1 388  134 1006   2 0.994871795
## 224  0.051244764 0.948755236 zero Group1 388  133 1007   2 0.994871795
## 1185 0.051109335 0.948890665 zero Group1 388  132 1008   2 0.994871795
## 1128 0.049621389 0.950378611 zero Group1 388  131 1009   2 0.994871795
## 811  0.049417475 0.950582525 zero Group1 388  130 1010   2 0.994871795
## 518  0.048692442 0.951307558 zero Group1 388  129 1011   2 0.994871795
## 886  0.048547844 0.951452156 zero Group1 388  128 1012   2 0.994871795
## 1488 0.048427904 0.951572096 zero Group1 388  127 1013   2 0.994871795
## 542  0.047781150 0.952218850 zero Group1 388  126 1014   2 0.994871795
## 1316 0.046982959 0.953017041 zero Group1 388  125 1015   2 0.994871795
## 1079 0.046796123 0.953203877 zero Group1 388  124 1016   2 0.994871795
## 846  0.046617630 0.953382370 zero Group1 388  123 1017   2 0.994871795
## 51   0.046258167 0.953741833 zero Group1 388  122 1018   2 0.994871795
## 1234 0.046213872 0.953786128 zero Group1 388  121 1019   2 0.994871795
## 1421 0.045861295 0.954138705 zero Group1 388  120 1020   2 0.994871795
## 1190 0.045851899 0.954148101 zero Group1 388  119 1021   2 0.994871795
## 614  0.045832952 0.954167048 zero Group1 388  118 1022   2 0.994871795
## 1076 0.045828339 0.954171661 zero Group1 388  117 1023   2 0.994871795
## 991  0.044796592 0.955203408 zero Group1 388  116 1024   2 0.994871795
## 1525 0.044402318 0.955597682 zero Group1 388  115 1025   2 0.994871795
## 966  0.044247527 0.955752473 zero Group1 388  114 1026   2 0.994871795
## 1183 0.043396005 0.956603995 zero Group1 388  113 1027   2 0.994871795
## 1315 0.043307163 0.956692837 zero Group1 388  112 1028   2 0.994871795
## 1226 0.042321702 0.957678298 zero Group1 388  111 1029   2 0.994871795
## 737  0.042205937 0.957794063 zero Group1 388  110 1030   2 0.994871795
## 606  0.042121040 0.957878960 zero Group1 388  109 1031   2 0.994871795
## 703  0.042102073 0.957897927 zero Group1 388  108 1032   2 0.994871795
## 106  0.041347995 0.958652005 zero Group1 388  107 1033   2 0.994871795
## 156  0.040697833 0.959302167 zero Group1 388  106 1034   2 0.994871795
## 848  0.040466065 0.959533935 zero Group1 388  105 1035   2 0.994871795
## 752  0.040262625 0.959737375 zero Group1 388  104 1036   2 0.994871795
## 571  0.040131616 0.959868384 zero Group1 388  103 1037   2 0.994871795
## 650  0.039640336 0.960359664 zero Group1 388  102 1038   2 0.994871795
## 338  0.039617012 0.960382988 zero Group1 388  101 1039   2 0.994871795
## 704  0.039547919 0.960452081 zero Group1 388  100 1040   2 0.994871795
## 1398 0.039529900 0.960470100 zero Group1 388   99 1041   2 0.994871795
## 1240 0.039123060 0.960876940 zero Group1 388   98 1042   2 0.994871795
## 1424 0.039004480 0.960995520 zero Group1 388   97 1043   2 0.994871795
## 845  0.038973643 0.961026357 zero Group1 388   96 1044   2 0.994871795
## 1151 0.038752449 0.961247551 zero Group1 388   95 1045   2 0.994871795
## 1331 0.038615031 0.961384969 zero Group1 388   94 1046   2 0.994871795
## 574  0.038572968 0.961427032 zero Group1 388   93 1047   2 0.994871795
## 1313 0.038173793 0.961826207 zero Group1 388   92 1048   2 0.994871795
## 842  0.038067353 0.961932647 zero Group1 388   91 1049   2 0.994871795
## 1148 0.037568829 0.962431171 zero Group1 388   90 1050   2 0.994871795
## 1461 0.037558467 0.962441533 zero Group1 388   89 1051   2 0.994871795
## 193  0.037351443 0.962648557  one Group1 389   89 1051   1 0.997435897
## 577  0.037212767 0.962787233 zero Group1 389   88 1052   1 0.997435897
## 170  0.037030917 0.962969083  one Group1 390   88 1052   0 1.000000000
## 854  0.036998107 0.963001893 zero Group1 390   87 1053   0 1.000000000
## 1330 0.036580222 0.963419778 zero Group1 390   86 1054   0 1.000000000
## 508  0.036156445 0.963843555 zero Group1 390   85 1055   0 1.000000000
## 1397 0.036144764 0.963855236 zero Group1 390   84 1056   0 1.000000000
## 1134 0.036100600 0.963899400 zero Group1 390   83 1057   0 1.000000000
## 960  0.036028813 0.963971187 zero Group1 390   82 1058   0 1.000000000
## 1404 0.035947434 0.964052566 zero Group1 390   81 1059   0 1.000000000
## 913  0.035630747 0.964369253 zero Group1 390   80 1060   0 1.000000000
## 337  0.035213330 0.964786670 zero Group1 390   79 1061   0 1.000000000
## 878  0.034520078 0.965479922 zero Group1 390   78 1062   0 1.000000000
## 1122 0.034276880 0.965723120 zero Group1 390   77 1063   0 1.000000000
## 160  0.034226293 0.965773707 zero Group1 390   76 1064   0 1.000000000
## 440  0.034064750 0.965935250 zero Group1 390   75 1065   0 1.000000000
## 1396 0.032979116 0.967020884 zero Group1 390   74 1066   0 1.000000000
## 276  0.031956196 0.968043804 zero Group1 390   73 1067   0 1.000000000
## 1449 0.030841731 0.969158269 zero Group1 390   72 1068   0 1.000000000
## 717  0.030479893 0.969520107 zero Group1 390   71 1069   0 1.000000000
## 844  0.030257134 0.969742866 zero Group1 390   70 1070   0 1.000000000
## 419  0.030194055 0.969805945 zero Group1 390   69 1071   0 1.000000000
## 241  0.030141785 0.969858215 zero Group1 390   68 1072   0 1.000000000
## 1458 0.029584872 0.970415128 zero Group1 390   67 1073   0 1.000000000
## 1150 0.029547143 0.970452857 zero Group1 390   66 1074   0 1.000000000
## 229  0.028946959 0.971053041 zero Group1 390   65 1075   0 1.000000000
## 1360 0.028186900 0.971813100 zero Group1 390   64 1076   0 1.000000000
## 507  0.027855209 0.972144791 zero Group1 390   63 1077   0 1.000000000
## 100  0.027799546 0.972200454 zero Group1 390   62 1078   0 1.000000000
## 1403 0.027061598 0.972938402 zero Group1 390   61 1079   0 1.000000000
## 741  0.026903597 0.973096403 zero Group1 390   60 1080   0 1.000000000
## 931  0.026858891 0.973141109 zero Group1 390   59 1081   0 1.000000000
## 194  0.026653541 0.973346459 zero Group1 390   58 1082   0 1.000000000
## 1052 0.026612962 0.973387038 zero Group1 390   57 1083   0 1.000000000
## 734  0.025659179 0.974340821 zero Group1 390   56 1084   0 1.000000000
## 1337 0.025564999 0.974435001 zero Group1 390   55 1085   0 1.000000000
## 1154 0.024905082 0.975094918 zero Group1 390   54 1086   0 1.000000000
## 448  0.024897568 0.975102432 zero Group1 390   53 1087   0 1.000000000
## 1192 0.024493180 0.975506820 zero Group1 390   52 1088   0 1.000000000
## 73   0.024060962 0.975939038 zero Group1 390   51 1089   0 1.000000000
## 1367 0.023780312 0.976219688 zero Group1 390   50 1090   0 1.000000000
## 882  0.022996549 0.977003451 zero Group1 390   49 1091   0 1.000000000
## 342  0.022904864 0.977095136 zero Group1 390   48 1092   0 1.000000000
## 240  0.022000189 0.977999811 zero Group1 390   47 1093   0 1.000000000
## 514  0.021913825 0.978086175 zero Group1 390   46 1094   0 1.000000000
## 1029 0.020120091 0.979879909 zero Group1 390   45 1095   0 1.000000000
## 816  0.019948863 0.980051137 zero Group1 390   44 1096   0 1.000000000
## 1342 0.019156046 0.980843954 zero Group1 390   43 1097   0 1.000000000
## 157  0.018899227 0.981100773 zero Group1 390   42 1098   0 1.000000000
## 544  0.018888829 0.981111171 zero Group1 390   41 1099   0 1.000000000
## 1371 0.018063899 0.981936101 zero Group1 390   40 1100   0 1.000000000
## 132  0.017802674 0.982197326 zero Group1 390   39 1101   0 1.000000000
## 119  0.016839058 0.983160942 zero Group1 390   38 1102   0 1.000000000
## 1024 0.016786877 0.983213123 zero Group1 390   37 1103   0 1.000000000
## 1402 0.016485448 0.983514552 zero Group1 390   36 1104   0 1.000000000
## 267  0.016467181 0.983532819 zero Group1 390   35 1105   0 1.000000000
## 1063 0.015163718 0.984836282 zero Group1 390   34 1106   0 1.000000000
## 876  0.014449974 0.985550026 zero Group1 390   33 1107   0 1.000000000
## 1474 0.013711831 0.986288169 zero Group1 390   32 1108   0 1.000000000
## 165  0.013684108 0.986315892 zero Group1 390   31 1109   0 1.000000000
## 1115 0.013277580 0.986722420 zero Group1 390   30 1110   0 1.000000000
## 222  0.012567903 0.987432097 zero Group1 390   29 1111   0 1.000000000
## 1248 0.012317075 0.987682925 zero Group1 390   28 1112   0 1.000000000
## 912  0.012105631 0.987894369 zero Group1 390   27 1113   0 1.000000000
## 923  0.011826296 0.988173704 zero Group1 390   26 1114   0 1.000000000
## 134  0.011822015 0.988177985 zero Group1 390   25 1115   0 1.000000000
## 885  0.011760210 0.988239790 zero Group1 390   24 1116   0 1.000000000
## 629  0.011145841 0.988854159 zero Group1 390   23 1117   0 1.000000000
## 723  0.010597505 0.989402495 zero Group1 390   22 1118   0 1.000000000
## 472  0.009509415 0.990490585 zero Group1 390   21 1119   0 1.000000000
## 453  0.009375237 0.990624763 zero Group1 390   20 1120   0 1.000000000
## 33   0.009268262 0.990731738 zero Group1 390   19 1121   0 1.000000000
## 1456 0.009104419 0.990895581 zero Group1 390   18 1122   0 1.000000000
## 712  0.008269217 0.991730783 zero Group1 390   17 1123   0 1.000000000
## 1136 0.007698768 0.992301232 zero Group1 390   16 1124   0 1.000000000
## 112  0.007232844 0.992767156 zero Group1 390   15 1125   0 1.000000000
## 1530 0.007093820 0.992906180 zero Group1 390   14 1126   0 1.000000000
## 407  0.006779058 0.993220942 zero Group1 390   13 1127   0 1.000000000
## 1011 0.005651895 0.994348105 zero Group1 390   12 1128   0 1.000000000
## 716  0.005331466 0.994668534 zero Group1 390   11 1129   0 1.000000000
## 413  0.004566361 0.995433639 zero Group1 390   10 1130   0 1.000000000
## 1432 0.004229997 0.995770003 zero Group1 390    9 1131   0 1.000000000
## 1314 0.004153838 0.995846162 zero Group1 390    8 1132   0 1.000000000
## 274  0.003782699 0.996217301 zero Group1 390    7 1133   0 1.000000000
## 1166 0.003356218 0.996643782 zero Group1 390    6 1134   0 1.000000000
## 1229 0.002971932 0.997028068 zero Group1 390    5 1135   0 1.000000000
## 168  0.002805506 0.997194494 zero Group1 390    4 1136   0 1.000000000
## 920  0.002590619 0.997409381 zero Group1 390    3 1137   0 1.000000000
## 163  0.002434751 0.997565249 zero Group1 390    2 1138   0 1.000000000
## 903  0.002402334 0.997597666 zero Group1 390    1 1139   0 1.000000000
## 1238 0.001883048 0.998116952 zero Group1 390    0 1140   0 1.000000000
##             SPEC Informedness      PREC       NPV      MARK         F1
## 199  1.000000000  0.002564103 1.0000000 0.7455853 0.7455853 0.00511509
## 353  1.000000000  0.005128205 1.0000000 0.7460733 0.7460733 0.01020408
## 299  1.000000000  0.007692308 1.0000000 0.7465619 0.7465619 0.01526718
## 482  1.000000000  0.010256410 1.0000000 0.7470511 0.7470511 0.02030457
## 432  1.000000000  0.012820513 1.0000000 0.7475410 0.7475410 0.02531646
## 50   0.999122807  0.011943320 0.8333333 0.7473753 0.5807087 0.02525253
## 246  0.999122807  0.014507422 0.8571429 0.7478661 0.6050089 0.03022670
## 1201 0.999122807  0.017071525 0.8750000 0.7483574 0.6233574 0.03517588
## 1037 0.999122807  0.019635628 0.8888889 0.7488494 0.6377383 0.04010025
## 1502 0.999122807  0.022199730 0.9000000 0.7493421 0.6493421 0.04500000
## 794  0.998245614  0.021322537 0.8181818 0.7491771 0.5673589 0.04488778
## 153  0.998245614  0.023886640 0.8333333 0.7496706 0.5830040 0.04975124
## 90   0.998245614  0.026450742 0.8461538 0.7501648 0.5963186 0.05459057
## 998  0.998245614  0.029014845 0.8571429 0.7506596 0.6078025 0.05940594
## 400  0.998245614  0.031578947 0.8666667 0.7511551 0.6178218 0.06419753
## 135  0.998245614  0.034143050 0.8750000 0.7516513 0.6266513 0.06896552
## 1092 0.998245614  0.036707152 0.8823529 0.7521481 0.6345010 0.07371007
## 349  0.998245614  0.039271255 0.8888889 0.7526455 0.6415344 0.07843137
## 871  0.997368421  0.038394062 0.8421053 0.7524818 0.5945871 0.07823961
## 784  0.997368421  0.040958165 0.8500000 0.7529801 0.6029801 0.08292683
## 395  0.997368421  0.043522267 0.8571429 0.7534791 0.6106220 0.08759124
## 1408 0.997368421  0.046086370 0.8636364 0.7539788 0.6176151 0.09223301
## 783  0.997368421  0.048650472 0.8695652 0.7544791 0.6240443 0.09685230
## 788  0.997368421  0.051214575 0.8750000 0.7549801 0.6299801 0.10144928
## 870  0.996491228  0.050337382 0.8400000 0.7548173 0.5948173 0.10120482
## 49   0.996491228  0.052901484 0.8461538 0.7553191 0.6014730 0.10576923
## 388  0.996491228  0.055465587 0.8518519 0.7558217 0.6076735 0.11031175
## 868  0.995614035  0.054588394 0.8214286 0.7556591 0.5770877 0.11004785
## 725  0.994736842  0.053711201 0.7931034 0.7554963 0.5485998 0.10978520
## 384  0.994736842  0.056275304 0.8000000 0.7560000 0.5560000 0.11428571
## 307  0.993859649  0.055398111 0.7741935 0.7558372 0.5300308 0.11401425
## 601  0.992982456  0.054520918 0.7500000 0.7556742 0.5056742 0.11374408
## 793  0.992982456  0.057085020 0.7575758 0.7561790 0.5137548 0.11820331
## 1414 0.992982456  0.059649123 0.7647059 0.7566845 0.5213904 0.12264151
## 1307 0.992982456  0.062213225 0.7714286 0.7571906 0.5286192 0.12705882
## 24   0.992982456  0.064777328 0.7777778 0.7576975 0.5354752 0.13145540
## 512  0.992105263  0.063900135 0.7567568 0.7575352 0.5142919 0.13114754
## 959  0.991228070  0.063022942 0.7368421 0.7573727 0.4942148 0.13084112
## 151  0.991228070  0.065587045 0.7435897 0.7578806 0.5014704 0.13519814
## 318  0.991228070  0.068151147 0.7500000 0.7583893 0.5083893 0.13953488
## 130  0.991228070  0.070715250 0.7560976 0.7588986 0.5149962 0.14385151
## 148  0.991228070  0.073279352 0.7619048 0.7594086 0.5213134 0.14814815
## 431  0.991228070  0.075843455 0.7674419 0.7599193 0.5273612 0.15242494
## 1413 0.991228070  0.078407557 0.7727273 0.7604307 0.5331580 0.15668203
## 179  0.991228070  0.080971660 0.7777778 0.7609428 0.5387205 0.16091954
## 128  0.991228070  0.083535762 0.7826087 0.7614555 0.5440642 0.16513761
## 1016 0.990350877  0.082658570 0.7659574 0.7612947 0.5272521 0.16475973
## 435  0.990350877  0.085222672 0.7708333 0.7618084 0.5326417 0.16894977
## 1035 0.990350877  0.087786775 0.7755102 0.7623228 0.5378330 0.17312073
## 1308 0.990350877  0.090350877 0.7800000 0.7628378 0.5428378 0.17727273
## 1305 0.990350877  0.092914980 0.7843137 0.7633536 0.5476673 0.18140590
## 1304 0.990350877  0.095479082 0.7884615 0.7638701 0.5523316 0.18552036
## 245  0.990350877  0.098043185 0.7924528 0.7643873 0.5568401 0.18961625
## 1086 0.990350877  0.100607287 0.7962963 0.7649051 0.5612014 0.19369369
## 374  0.990350877  0.103171390 0.8000000 0.7654237 0.5654237 0.19775281
## 1090 0.990350877  0.105735493 0.8035714 0.7659430 0.5695144 0.20179372
## 1501 0.990350877  0.108299595 0.8070175 0.7664630 0.5734805 0.20581655
## 907  0.989473684  0.107422402 0.7931034 0.7663043 0.5594078 0.20535714
## 1071 0.988596491  0.106545209 0.7796610 0.7661455 0.5458065 0.20489978
## 978  0.987719298  0.105668016 0.7666667 0.7659864 0.5326531 0.20444444
## 977  0.986842105  0.104790823 0.7540984 0.7658271 0.5199255 0.20399113
## 46   0.986842105  0.107354926 0.7580645 0.7663488 0.5244133 0.20796460
## 1384 0.985964912  0.106477733 0.7460317 0.7661895 0.5122212 0.20750552
## 479  0.985964912  0.109041835 0.7500000 0.7667121 0.5167121 0.21145374
## 186  0.985964912  0.111605938 0.7538462 0.7672355 0.5210816 0.21538462
## 1383 0.985087719  0.110728745 0.7424242 0.7670765 0.5095007 0.21491228
## 1087 0.985087719  0.113292848 0.7462687 0.7676008 0.5138695 0.21881838
## 54   0.984210526  0.112415655 0.7352941 0.7674419 0.5027360 0.21834061
## 65   0.984210526  0.114979757 0.7391304 0.7679671 0.5070976 0.22222222
## 483  0.984210526  0.117543860 0.7428571 0.7684932 0.5113503 0.22608696
## 1070 0.983333333  0.116666667 0.7323944 0.7683345 0.5007288 0.22559653
## 308  0.982456140  0.115789474 0.7222222 0.7681756 0.4903978 0.22510823
## 185  0.982456140  0.118353576 0.7260274 0.7687028 0.4947302 0.22894168
## 1091 0.982456140  0.120917679 0.7297297 0.7692308 0.4989605 0.23275862
## 77   0.982456140  0.123481781 0.7333333 0.7697595 0.5030928 0.23655914
## 370  0.982456140  0.126045884 0.7368421 0.7702889 0.5071310 0.24034335
## 792  0.982456140  0.128609987 0.7402597 0.7708190 0.5110787 0.24411135
## 1197 0.982456140  0.131174089 0.7435897 0.7713499 0.5149396 0.24786325
## 177  0.982456140  0.133738192 0.7468354 0.7718815 0.5187169 0.25159915
## 159  0.981578947  0.132860999 0.7375000 0.7717241 0.5092241 0.25106383
## 399  0.981578947  0.135425101 0.7407407 0.7722567 0.5129975 0.25477707
## 195  0.981578947  0.137989204 0.7439024 0.7727901 0.5166925 0.25847458
## 234  0.981578947  0.140553306 0.7469880 0.7733241 0.5203121 0.26215645
## 743  0.980701754  0.139676113 0.7380952 0.7731674 0.5112626 0.26160338
## 190  0.980701754  0.142240216 0.7411765 0.7737024 0.5148789 0.26526316
## 922  0.979824561  0.141363023 0.7325581 0.7735457 0.5061038 0.26470588
## 1203 0.979824561  0.143927126 0.7356322 0.7740818 0.5097140 0.26834382
## 1095 0.979824561  0.146491228 0.7386364 0.7746186 0.5132549 0.27196653
## 249  0.979824561  0.149055331 0.7415730 0.7751561 0.5167292 0.27557411
## 790  0.979824561  0.151619433 0.7444444 0.7756944 0.5201389 0.27916667
## 397  0.979824561  0.154183536 0.7472527 0.7762335 0.5234862 0.28274428
## 1439 0.978947368  0.153306343 0.7391304 0.7760779 0.5152083 0.28215768
## 127  0.978947368  0.155870445 0.7419355 0.7766180 0.5185534 0.28571429
## 813  0.978070175  0.154993252 0.7340426 0.7764624 0.5105049 0.28512397
## 402  0.978070175  0.157557355 0.7368421 0.7770035 0.5138456 0.28865979
## 38   0.978070175  0.160121457 0.7395833 0.7775453 0.5171287 0.29218107
## 238  0.978070175  0.162685560 0.7422680 0.7780879 0.5203560 0.29568789
## 710  0.977192982  0.161808367 0.7346939 0.7779330 0.5126268 0.29508197
## 1441 0.976315789  0.160931174 0.7272727 0.7777778 0.5050505 0.29447853
## 1196 0.976315789  0.163495277 0.7300000 0.7783217 0.5083217 0.29795918
## 378  0.976315789  0.166059379 0.7326733 0.7788663 0.5115396 0.30142566
## 258  0.976315789  0.168623482 0.7352941 0.7794118 0.5147059 0.30487805
## 348  0.976315789  0.171187584 0.7378641 0.7799580 0.5178220 0.30831643
## 928  0.975438596  0.170310391 0.7307692 0.7798036 0.5105729 0.30769231
## 235  0.975438596  0.172874494 0.7333333 0.7803509 0.5136842 0.31111111
## 236  0.975438596  0.175438596 0.7358491 0.7808989 0.5167479 0.31451613
## 593  0.975438596  0.178002699 0.7383178 0.7814476 0.5197654 0.31790744
## 1202 0.975438596  0.180566802 0.7407407 0.7819972 0.5227379 0.32128514
## 189  0.975438596  0.183130904 0.7431193 0.7825475 0.5256668 0.32464930
## 200  0.975438596  0.185695007 0.7454545 0.7830986 0.5285531 0.32800000
## 294  0.975438596  0.188259109 0.7477477 0.7836505 0.5313982 0.33133733
## 699  0.975438596  0.190823212 0.7500000 0.7842031 0.5342031 0.33466135
## 1228 0.974561404  0.189946019 0.7433628 0.7840508 0.5274136 0.33399602
## 191  0.974561404  0.192510121 0.7456140 0.7846045 0.5302186 0.33730159
## 371  0.974561404  0.195074224 0.7478261 0.7851590 0.5329851 0.34059406
## 262  0.974561404  0.197638327 0.7500000 0.7857143 0.5357143 0.34387352
## 389  0.974561404  0.200202429 0.7521368 0.7862703 0.5384071 0.34714004
## 233  0.974561404  0.202766532 0.7542373 0.7868272 0.5410645 0.35039370
## 1211 0.973684211  0.201889339 0.7478992 0.7866761 0.5345753 0.34970530
## 803  0.972807018  0.201012146 0.7416667 0.7865248 0.5281915 0.34901961
## 251  0.972807018  0.203576248 0.7438017 0.7870830 0.5308847 0.35225049
## 1374 0.971929825  0.202699055 0.7377049 0.7869318 0.5246367 0.35156250
## 1447 0.971052632  0.201821862 0.7317073 0.7867804 0.5184877 0.35087719
## 748  0.970175439  0.200944669 0.7258065 0.7866287 0.5124352 0.35019455
## 795  0.969298246  0.200067476 0.7200000 0.7864769 0.5064769 0.34951456
## 491  0.968421053  0.199190283 0.7142857 0.7863248 0.5006105 0.34883721
## 1500 0.968421053  0.201754386 0.7165354 0.7868852 0.5034207 0.35203095
## 563  0.967543860  0.200877193 0.7109375 0.7867332 0.4976707 0.35135135
## 638  0.966666667  0.200000000 0.7054264 0.7865810 0.4920074 0.35067437
## 1139 0.965789474  0.199122807 0.7000000 0.7864286 0.4864286 0.35000000
## 441  0.964912281  0.198245614 0.6946565 0.7862759 0.4809324 0.34932821
## 210  0.964035088  0.197368421 0.6893939 0.7861230 0.4755170 0.34865900
## 15   0.964035088  0.199932524 0.6917293 0.7866858 0.4784151 0.35181644
## 832  0.963157895  0.199055331 0.6865672 0.7865330 0.4731001 0.35114504
## 481  0.963157895  0.201619433 0.6888889 0.7870968 0.4759857 0.35428571
## 1409 0.963157895  0.204183536 0.6911765 0.7876614 0.4788379 0.35741445
## 631  0.962280702  0.203306343 0.6861314 0.7875090 0.4736404 0.35673624
## 1000 0.962280702  0.205870445 0.6884058 0.7880747 0.4764805 0.35984848
## 1302 0.962280702  0.208434548 0.6906475 0.7886413 0.4792887 0.36294896
## 1040 0.962280702  0.210998650 0.6928571 0.7892086 0.4820658 0.36603774
## 851  0.961403509  0.210121457 0.6879433 0.7890569 0.4770001 0.36534840
## 446  0.960526316  0.209244265 0.6830986 0.7889049 0.4720035 0.36466165
## 188  0.960526316  0.211808367 0.6853147 0.7894737 0.4747884 0.36772983
## 306  0.959649123  0.210931174 0.6805556 0.7893218 0.4698773 0.36704120
## 126  0.959649123  0.213495277 0.6827586 0.7898917 0.4726503 0.37009346
## 1036 0.959649123  0.216059379 0.6849315 0.7904624 0.4753939 0.37313433
## 1051 0.958771930  0.215182186 0.6802721 0.7903109 0.4705830 0.37243948
## 1506 0.958771930  0.217746289 0.6824324 0.7908828 0.4733152 0.37546468
## 1519 0.957894737  0.216869096 0.6778523 0.7907314 0.4685837 0.37476809
## 656  0.957017544  0.215991903 0.6733333 0.7905797 0.4639130 0.37407407
## 1417 0.957017544  0.218556005 0.6754967 0.7911530 0.4666497 0.37707948
## 166  0.956140351  0.217678812 0.6710526 0.7910015 0.4620541 0.37638376
## 785  0.956140351  0.220242915 0.6732026 0.7915759 0.4647785 0.37937385
## 173  0.956140351  0.222807018 0.6753247 0.7921512 0.4674758 0.38235294
## 316  0.956140351  0.225371120 0.6774194 0.7927273 0.4701466 0.38532110
## 436  0.956140351  0.227935223 0.6794872 0.7933042 0.4727914 0.38827839
## 20   0.956140351  0.230499325 0.6815287 0.7938820 0.4754107 0.39122486
## 434  0.956140351  0.233063428 0.6835443 0.7944606 0.4780049 0.39416058
## 300  0.956140351  0.235627530 0.6855346 0.7950401 0.4805747 0.39708561
## 68   0.955263158  0.234750337 0.6812500 0.7948905 0.4761405 0.39636364
## 302  0.955263158  0.237314440 0.6832298 0.7954711 0.4787010 0.39927405
## 1004 0.955263158  0.239878543 0.6851852 0.7960526 0.4812378 0.40217391
## 999  0.955263158  0.242442645 0.6871166 0.7966350 0.4837515 0.40506329
## 405  0.954385965  0.241565452 0.6829268 0.7964861 0.4794129 0.40433213
## 203  0.954385965  0.244129555 0.6848485 0.7970696 0.4819181 0.40720721
## 781  0.954385965  0.246693657 0.6867470 0.7976540 0.4844009 0.41007194
## 331  0.953508772  0.245816464 0.6826347 0.7975055 0.4801402 0.40933573
## 1246 0.952631579  0.244939271 0.6785714 0.7973568 0.4759283 0.40860215
## 1406 0.952631579  0.247503374 0.6804734 0.7979427 0.4784161 0.41144902
## 1001 0.952631579  0.250067476 0.6823529 0.7985294 0.4808824 0.41428571
## 1039 0.952631579  0.252631579 0.6842105 0.7991170 0.4833275 0.41711230
## 1199 0.952631579  0.255195682 0.6860465 0.7997054 0.4857520 0.41992883
## 1278 0.951754386  0.254318489 0.6820809 0.7995578 0.4816388 0.41918295
## 698  0.951754386  0.256882591 0.6839080 0.8001475 0.4840555 0.42198582
## 511  0.950877193  0.256005398 0.6800000 0.8000000 0.4800000 0.42123894
## 476  0.950877193  0.258569501 0.6818182 0.8005908 0.4824090 0.42402827
## 375  0.950877193  0.261133603 0.6836158 0.8011826 0.4847984 0.42680776
## 344  0.950877193  0.263697706 0.6853933 0.8017751 0.4871684 0.42957746
## 487  0.950877193  0.266261808 0.6871508 0.8023686 0.4895195 0.43233743
## 1301 0.950877193  0.268825911 0.6888889 0.8029630 0.4918519 0.43508772
## 764  0.950000000  0.267948718 0.6850829 0.8028169 0.4878998 0.43432574
## 1412 0.950000000  0.270512821 0.6868132 0.8034125 0.4902256 0.43706294
## 154  0.950000000  0.273076923 0.6885246 0.8040089 0.4925335 0.43979058
## 1098 0.950000000  0.275641026 0.6902174 0.8046062 0.4948236 0.44250871
## 295  0.950000000  0.278205128 0.6918919 0.8052045 0.4970964 0.44521739
## 1093 0.950000000  0.280769231 0.6935484 0.8058036 0.4993520 0.44791667
## 1311 0.950000000  0.283333333 0.6951872 0.8064036 0.5015907 0.45060659
## 1317 0.949122807  0.282456140 0.6914894 0.8062593 0.4977487 0.44982699
## 1306 0.949122807  0.285020243 0.6931217 0.8068606 0.4999822 0.45250432
## 1318 0.948245614  0.284143050 0.6894737 0.8067164 0.4961901 0.45172414
## 81   0.948245614  0.286707152 0.6910995 0.8073189 0.4984184 0.45438898
## 815  0.947368421  0.285829960 0.6875000 0.8071749 0.4946749 0.45360825
## 1508 0.947368421  0.288394062 0.6891192 0.8077786 0.4968978 0.45626072
## 1504 0.947368421  0.290958165 0.6907216 0.8083832 0.4991049 0.45890411
## 7    0.947368421  0.293522267 0.6923077 0.8089888 0.5012965 0.46153846
## 1103 0.946491228  0.292645074 0.6887755 0.8088456 0.4976211 0.46075085
## 1368 0.945614035  0.291767881 0.6852792 0.8087022 0.4939814 0.45996593
## 696  0.945614035  0.294331984 0.6868687 0.8093093 0.4961780 0.46258503
## 242  0.945614035  0.296896086 0.6884422 0.8099174 0.4983596 0.46519525
## 443  0.944736842  0.296018893 0.6850000 0.8097744 0.4947744 0.46440678
## 1033 0.944736842  0.298582996 0.6865672 0.8103837 0.4969509 0.46700508
## 758  0.943859649  0.297705803 0.6831683 0.8102410 0.4934093 0.46621622
## 1176 0.942982456  0.296828610 0.6798030 0.8100980 0.4899009 0.46543002
## 697  0.942982456  0.299392713 0.6813725 0.8107089 0.4920814 0.46801347
## 123  0.942982456  0.301956815 0.6829268 0.8113208 0.4942476 0.47058824
## 279  0.942982456  0.304520918 0.6844660 0.8119335 0.4963996 0.47315436
## 836  0.942105263  0.303643725 0.6811594 0.8117914 0.4929508 0.47236181
## 1002 0.942105263  0.306207827 0.6826923 0.8124054 0.4950978 0.47491639
## 8    0.942105263  0.308771930 0.6842105 0.8130204 0.4972310 0.47746244
## 1388 0.941228070  0.307894737 0.6809524 0.8128788 0.4938312 0.47666667
## 1509 0.941228070  0.310458839 0.6824645 0.8134951 0.4959595 0.47920133
## 802  0.940350877  0.309581646 0.6792453 0.8133536 0.4925988 0.47840532
## 61   0.940350877  0.312145749 0.6807512 0.8139711 0.4947223 0.48092869
## 819  0.939473684  0.311268556 0.6775701 0.8138298 0.4913999 0.48013245
## 498  0.938596491  0.310391363 0.6744186 0.8136882 0.4881068 0.47933884
## 216  0.938596491  0.312955466 0.6759259 0.8143075 0.4902334 0.48184818
## 484  0.938596491  0.315519568 0.6774194 0.8149276 0.4923470 0.48434926
## 460  0.937719298  0.314642375 0.6743119 0.8147866 0.4890985 0.48355263
## 282  0.937719298  0.317206478 0.6757991 0.8154081 0.4912072 0.48604269
## 892  0.937719298  0.319770580 0.6772727 0.8160305 0.4933033 0.48852459
## 594  0.937719298  0.322334683 0.6787330 0.8166539 0.4953870 0.49099836
## 16   0.937719298  0.324898785 0.6801802 0.8172783 0.4974585 0.49346405
## 654  0.936842105  0.324021592 0.6771300 0.8171385 0.4942685 0.49265905
## 313  0.935964912  0.323144399 0.6741071 0.8169985 0.4911056 0.49185668
## 894  0.935964912  0.325708502 0.6755556 0.8176245 0.4931801 0.49430894
## 898  0.935964912  0.328272605 0.6769912 0.8182515 0.4952427 0.49675325
## 1200 0.935964912  0.330836707 0.6784141 0.8188795 0.4972936 0.49918963
## 1393 0.935087719  0.329959514 0.6754386 0.8187404 0.4941790 0.49838188
## 1411 0.935087719  0.332523617 0.6768559 0.8193697 0.4962256 0.50080775
## 1097 0.935087719  0.335087719 0.6782609 0.8200000 0.4982609 0.50322581
## 1468 0.934210526  0.334210526 0.6753247 0.8198614 0.4951861 0.50241546
## 766  0.933333333  0.333333333 0.6724138 0.8197227 0.4921364 0.50160772
## 433  0.933333333  0.335897436 0.6738197 0.8203547 0.4941744 0.50401284
## 478  0.933333333  0.338461538 0.6752137 0.8209877 0.4962013 0.50641026
## 925  0.932456140  0.337584345 0.6723404 0.8208494 0.4931898 0.50560000
## 70   0.932456140  0.340148448 0.6737288 0.8214838 0.4952126 0.50798722
## 1370 0.931578947  0.339271255 0.6708861 0.8213457 0.4922318 0.50717703
## 277  0.931578947  0.341835358 0.6722689 0.8219814 0.4942503 0.50955414
## 1031 0.931578947  0.344399460 0.6736402 0.8226181 0.4962583 0.51192369
## 314  0.930701754  0.343522267 0.6708333 0.8224806 0.4933140 0.51111111
## 728  0.929824561  0.342645074 0.6680498 0.8223429 0.4903927 0.51030111
## 18   0.929824561  0.345209177 0.6694215 0.8229814 0.4924029 0.51265823
## 66   0.929824561  0.347773279 0.6707819 0.8236208 0.4944027 0.51500790
## 350  0.929824561  0.350337382 0.6721311 0.8242613 0.4963924 0.51735016
## 28   0.929824561  0.352901484 0.6734694 0.8249027 0.4983721 0.51968504
## 329  0.928947368  0.352024291 0.6707317 0.8247664 0.4954981 0.51886792
## 283  0.928947368  0.354588394 0.6720648 0.8254092 0.4974740 0.52119309
## 351  0.928947368  0.357152497 0.6733871 0.8260530 0.4994401 0.52351097
## 237  0.928947368  0.359716599 0.6746988 0.8266979 0.5013967 0.52582160
## 689  0.928947368  0.362280702 0.6760000 0.8273438 0.5033437 0.52812500
## 964  0.928070175  0.361403509 0.6733068 0.8272088 0.5005155 0.52730109
## 683  0.927192982  0.360526316 0.6706349 0.8270736 0.4977085 0.52647975
## 590  0.927192982  0.363090418 0.6719368 0.8277212 0.4996580 0.52877138
## 621  0.926315789  0.362213225 0.6692913 0.8275862 0.4968775 0.52795031
## 366  0.925438596  0.361336032 0.6666667 0.8274510 0.4941176 0.52713178
## 1462 0.924561404  0.360458839 0.6640625 0.8273155 0.4913780 0.52631579
## 1056 0.924561404  0.363022942 0.6653696 0.8279654 0.4933351 0.52859351
## 1141 0.923684211  0.362145749 0.6627907 0.8278302 0.4906209 0.52777778
## 260  0.923684211  0.364709852 0.6640927 0.8284815 0.4925742 0.53004622
## 595  0.923684211  0.367273954 0.6653846 0.8291339 0.4945185 0.53230769
## 1392 0.922807018  0.366396761 0.6628352 0.8289992 0.4918345 0.53149002
## 104  0.921929825  0.365519568 0.6603053 0.8288644 0.4891697 0.53067485
## 961  0.921052632  0.364642375 0.6577947 0.8287293 0.4865240 0.52986217
## 129  0.921052632  0.367206478 0.6590909 0.8293839 0.4884748 0.53211009
## 1395 0.920175439  0.366329285 0.6566038 0.8292490 0.4858528 0.53129771
## 181  0.920175439  0.368893387 0.6578947 0.8299051 0.4877998 0.53353659
## 429  0.920175439  0.371457490 0.6591760 0.8305622 0.4897382 0.53576865
## 1124 0.919298246  0.370580297 0.6567164 0.8304279 0.4871443 0.53495441
## 895  0.919298246  0.373144399 0.6579926 0.8310864 0.4890790 0.53717754
## 1018 0.918421053  0.372267206 0.6555556 0.8309524 0.4865079 0.53636364
## 1049 0.917543860  0.371390013 0.6531365 0.8308181 0.4839546 0.53555219
## 1309 0.917543860  0.373954116 0.6544118 0.8314785 0.4858903 0.53776435
## 1156 0.916666667  0.373076923 0.6520147 0.8313445 0.4833591 0.53695324
## 1321 0.915789474  0.372199730 0.6496350 0.8312102 0.4808452 0.53614458
## 55   0.915789474  0.374763833 0.6509091 0.8318725 0.4827816 0.53834586
## 149  0.915789474  0.377327935 0.6521739 0.8325359 0.4847098 0.54054054
## 1127 0.914912281  0.376450742 0.6498195 0.8324022 0.4822217 0.53973013
## 4    0.914912281  0.379014845 0.6510791 0.8330671 0.4841462 0.54191617
## 178  0.914912281  0.381578947 0.6523297 0.8337330 0.4860628 0.54409567
## 591  0.914912281  0.384143050 0.6535714 0.8344000 0.4879714 0.54626866
## 756  0.914035088  0.383265857 0.6512456 0.8342674 0.4855130 0.54545455
## 951  0.913157895  0.382388664 0.6489362 0.8341346 0.4830708 0.54464286
## 1505 0.913157895  0.384952767 0.6501767 0.8348035 0.4849802 0.54680535
## 141  0.913157895  0.387516869 0.6514085 0.8354735 0.4868820 0.54896142
## 513  0.912280702  0.386639676 0.6491228 0.8353414 0.4844642 0.54814815
## 72   0.912280702  0.389203779 0.6503497 0.8360129 0.4863625 0.55029586
## 1285 0.911403509  0.388326586 0.6480836 0.8358809 0.4839646 0.54948301
## 1478 0.910526316  0.387449393 0.6458333 0.8357488 0.4815821 0.54867257
## 147  0.910526316  0.390013495 0.6470588 0.8364222 0.4834811 0.55081001
## 161  0.909649123  0.389136302 0.6448276 0.8362903 0.4811179 0.55000000
## 1133 0.908771930  0.388259109 0.6426117 0.8361582 0.4787699 0.54919236
## 547  0.907894737  0.387381916 0.6404110 0.8360258 0.4764368 0.54838710
## 1174 0.907017544  0.386504723 0.6382253 0.8358933 0.4741185 0.54758419
## 1198 0.907017544  0.389068826 0.6394558 0.8365696 0.4760254 0.54970760
## 1484 0.906140351  0.388191633 0.6372881 0.8364372 0.4737254 0.54890511
## 585  0.906140351  0.390755735 0.6385135 0.8371151 0.4756286 0.55102041
## 530  0.905263158  0.389878543 0.6363636 0.8369830 0.4733466 0.55021834
## 618  0.904385965  0.389001350 0.6342282 0.8368506 0.4710788 0.54941860
## 936  0.903508772  0.388124157 0.6321070 0.8367181 0.4688251 0.54862119
## 304  0.903508772  0.390688259 0.6333333 0.8373984 0.4707317 0.55072464
## 192  0.903508772  0.393252362 0.6345515 0.8380797 0.4726312 0.55282200
## 1336 0.902631579  0.392375169 0.6324503 0.8379479 0.4703982 0.55202312
## 1078 0.901754386  0.391497976 0.6303630 0.8378158 0.4681788 0.55122655
## 86   0.901754386  0.394062078 0.6315789 0.8384992 0.4700781 0.55331412
## 1389 0.900877193  0.393184885 0.6295082 0.8383673 0.4678755 0.55251799
## 1075 0.900000000  0.392307692 0.6274510 0.8382353 0.4656863 0.55172414
## 95   0.899122807  0.391430499 0.6254072 0.8381030 0.4635102 0.55093257
## 782  0.899122807  0.393994602 0.6266234 0.8387889 0.4654122 0.55300860
## 1300 0.899122807  0.396558704 0.6278317 0.8394758 0.4673076 0.55507868
## 1068 0.898245614  0.395681511 0.6258065 0.8393443 0.4651507 0.55428571
## 891  0.898245614  0.398245614 0.6270096 0.8400328 0.4670425 0.55634807
## 1084 0.897368421  0.397368421 0.6250000 0.8399015 0.4649015 0.55555556
## 564  0.896491228  0.396491228 0.6230032 0.8397699 0.4627731 0.55476529
## 545  0.895614035  0.395614035 0.6210191 0.8396382 0.4606573 0.55397727
## 93   0.895614035  0.398178138 0.6222222 0.8403292 0.4625514 0.55602837
## 228  0.894736842  0.397300945 0.6202532 0.8401977 0.4604509 0.55524079
## 387  0.894736842  0.399865047 0.6214511 0.8408904 0.4623415 0.55728430
## 26   0.893859649  0.398987854 0.6194969 0.8407591 0.4602559 0.55649718
## 981  0.892982456  0.398110661 0.6175549 0.8406276 0.4581824 0.55571227
## 298  0.892982456  0.400674764 0.6187500 0.8413223 0.4600723 0.55774648
## 589  0.892982456  0.403238866 0.6199377 0.8420182 0.4619559 0.55977496
## 1333 0.892105263  0.402361673 0.6180124 0.8418874 0.4598998 0.55898876
## 576  0.891228070  0.401484480 0.6160991 0.8417564 0.4578555 0.55820477
## 954  0.890350877  0.400607287 0.6141975 0.8416252 0.4558227 0.55742297
## 789  0.890350877  0.403171390 0.6153846 0.8423237 0.4577083 0.55944056
## 75   0.890350877  0.405735493 0.6165644 0.8430233 0.4595877 0.56145251
## 1262 0.889473684  0.404858300 0.6146789 0.8428928 0.4575717 0.56066946
## 1485 0.888596491  0.403981107 0.6128049 0.8427621 0.4555669 0.55988858
## 1407 0.888596491  0.406545209 0.6139818 0.8434638 0.4574455 0.56189152
## 99   0.887719298  0.405668016 0.6121212 0.8433333 0.4554545 0.56111111
## 522  0.886842105  0.404790823 0.6102719 0.8432027 0.4534746 0.56033287
## 939  0.885964912  0.403913630 0.6084337 0.8430718 0.4515055 0.55955679
## 714  0.885087719  0.403036437 0.6066066 0.8429407 0.4495473 0.55878285
## 1186 0.884210526  0.402159244 0.6047904 0.8428094 0.4475998 0.55801105
## 1155 0.883333333  0.401282051 0.6029851 0.8426778 0.4456629 0.55724138
## 1164 0.882456140  0.400404858 0.6011905 0.8425461 0.4437365 0.55647383
## 517  0.881578947  0.399527665 0.5994065 0.8424141 0.4418206 0.55570839
## 1386 0.880701754  0.398650472 0.5976331 0.8422819 0.4399150 0.55494505
## 1486 0.879824561  0.397773279 0.5958702 0.8421495 0.4380197 0.55418381
## 1288 0.878947368  0.396896086 0.5941176 0.8420168 0.4361345 0.55342466
## 284  0.878947368  0.399460189 0.5953079 0.8427250 0.4380329 0.55540356
## 701  0.878947368  0.402024291 0.5964912 0.8434343 0.4399256 0.55737705
## 1250 0.878070175  0.401147099 0.5947522 0.8433024 0.4380546 0.55661664
## 1289 0.877192982  0.400269906 0.5930233 0.8431703 0.4361936 0.55585831
## 708  0.876315789  0.399392713 0.5913043 0.8430380 0.4343423 0.55510204
## 1188 0.875438596  0.398515520 0.5895954 0.8429054 0.4325008 0.55434783
## 840  0.874561404  0.397638327 0.5878963 0.8427726 0.4306689 0.55359566
## 1265 0.873684211  0.396761134 0.5862069 0.8426396 0.4288465 0.55284553
## 1327 0.872807018  0.395883941 0.5845272 0.8425064 0.4270336 0.55209743
## 538  0.871929825  0.395006748 0.5828571 0.8423729 0.4252300 0.55135135
## 1073 0.871052632  0.394129555 0.5811966 0.8422392 0.4234358 0.55060729
## 1145 0.870175439  0.393252362 0.5795455 0.8421053 0.4216507 0.54986523
## 369  0.870175439  0.395816464 0.5807365 0.8428207 0.4235573 0.55181696
## 746  0.869298246  0.394939271 0.5790960 0.8426871 0.4217831 0.55107527
## 562  0.868421053  0.394062078 0.5774648 0.8425532 0.4200180 0.55033557
## 1193 0.868421053  0.396626181 0.5786517 0.8432709 0.4219226 0.55227882
## 473  0.867543860  0.395748988 0.5770308 0.8431373 0.4201681 0.55153949
## 1320 0.866666667  0.394871795 0.5754190 0.8430034 0.4184224 0.55080214
## 536  0.865789474  0.393994602 0.5738162 0.8428693 0.4166855 0.55006676
## 773  0.864912281  0.393117409 0.5722222 0.8427350 0.4149573 0.54933333
## 219  0.864035088  0.392240216 0.5706371 0.8426005 0.4132376 0.54860186
## 837  0.863157895  0.391363023 0.5690608 0.8424658 0.4115265 0.54787234
## 137  0.863157895  0.393927126 0.5702479 0.8431877 0.4134356 0.54980080
## 287  0.863157895  0.396491228 0.5714286 0.8439108 0.4153394 0.55172414
## 616  0.862280702  0.395614035 0.5698630 0.8437768 0.4136398 0.55099338
## 1385 0.861403509  0.394736842 0.5683060 0.8436426 0.4119486 0.55026455
## 995  0.861403509  0.397300945 0.5694823 0.8443680 0.4138503 0.55217966
## 1354 0.860526316  0.396423752 0.5679348 0.8442341 0.4121689 0.55145119
## 685  0.859649123  0.395546559 0.5663957 0.8440999 0.4104956 0.55072464
## 986  0.858771930  0.394669366 0.5648649 0.8439655 0.4088304 0.55000000
## 146  0.858771930  0.397233468 0.5660377 0.8446937 0.4107314 0.55190539
## 841  0.857894737  0.396356275 0.5645161 0.8445596 0.4090757 0.55118110
## 490  0.857017544  0.395479082 0.5630027 0.8444252 0.4074279 0.55045872
## 122  0.857017544  0.398043185 0.5641711 0.8451557 0.4093268 0.55235602
## 1253 0.856140351  0.397165992 0.5626667 0.8450216 0.4076883 0.55163399
## 569  0.855263158  0.396288799 0.5611702 0.8448873 0.4060576 0.55091384
## 1160 0.854385965  0.395411606 0.5596817 0.8447528 0.4044345 0.55019557
## 1362 0.853508772  0.394534413 0.5582011 0.8446181 0.4028191 0.54947917
## 404  0.852631579  0.393657220 0.5567282 0.8444831 0.4012113 0.54876463
## 293  0.852631579  0.396221323 0.5578947 0.8452174 0.4031121 0.55064935
## 1177 0.851754386  0.395344130 0.5564304 0.8450827 0.4015131 0.54993515
## 503  0.850877193  0.394466937 0.5549738 0.8449477 0.3999216 0.54922280
## 635  0.850000000  0.393589744 0.5535248 0.8448126 0.3983374 0.54851229
## 644  0.849122807  0.392712551 0.5520833 0.8446771 0.3967605 0.54780362
## 1361 0.848245614  0.391835358 0.5506494 0.8445415 0.3951908 0.54709677
## 1180 0.847368421  0.390958165 0.5492228 0.8444056 0.3936284 0.54639175
## 1195 0.847368421  0.393522267 0.5503876 0.8451444 0.3955320 0.54826255
## 1089 0.847368421  0.396086370 0.5515464 0.8458844 0.3974308 0.55012853
## 19   0.847368421  0.398650472 0.5526992 0.8466258 0.3993250 0.55198973
## 869  0.846491228  0.397773279 0.5512821 0.8464912 0.3977733 0.55128205
## 1464 0.845614035  0.396896086 0.5498721 0.8463565 0.3962286 0.55057618
## 462  0.844736842  0.396018893 0.5484694 0.8462214 0.3946908 0.54987212
## 856  0.843859649  0.395141700 0.5470738 0.8460862 0.3931600 0.54916986
## 1483 0.842982456  0.394264507 0.5456853 0.8459507 0.3916360 0.54846939
## 575  0.842105263  0.393387314 0.5443038 0.8458150 0.3901188 0.54777070
## 649  0.841228070  0.392510121 0.5429293 0.8456790 0.3886083 0.54707379
## 377  0.841228070  0.395074224 0.5440806 0.8464254 0.3905060 0.54891995
## 212  0.840350877  0.394197031 0.5427136 0.8462898 0.3890033 0.54822335
## 1194 0.840350877  0.396761134 0.5438596 0.8470380 0.3908977 0.55006337
## 244  0.840350877  0.399325236 0.5450000 0.8477876 0.3927876 0.55189873
## 1453 0.839473684  0.398448043 0.5436409 0.8476528 0.3912937 0.55120101
## 278  0.839473684  0.401012146 0.5447761 0.8484043 0.3931804 0.55303030
## 1158 0.838596491  0.400134953 0.5434243 0.8482697 0.3916941 0.55233291
## 584  0.838596491  0.402699055 0.5445545 0.8490231 0.3935775 0.55415617
## 642  0.837719298  0.401821862 0.5432099 0.8488889 0.3920988 0.55345912
## 588  0.837719298  0.404385965 0.5443350 0.8496441 0.3939791 0.55527638
## 1467 0.836842105  0.403508772 0.5429975 0.8495102 0.3925078 0.55457967
## 172  0.836842105  0.406072874 0.5441176 0.8502674 0.3943850 0.55639098
## 763  0.835964912  0.405195682 0.5427873 0.8501338 0.3929211 0.55569462
## 71   0.835964912  0.407759784 0.5439024 0.8508929 0.3947953 0.55750000
## 292  0.835964912  0.410323887 0.5450122 0.8516533 0.3966654 0.55930087
## 1053 0.835087719  0.409446694 0.5436893 0.8515206 0.3952099 0.55860349
## 209  0.835087719  0.412010796 0.5447942 0.8522829 0.3970771 0.56039851
## 770  0.834210526  0.411133603 0.5434783 0.8521505 0.3956288 0.55970149
## 36   0.834210526  0.413697706 0.5445783 0.8529148 0.3974931 0.56149068
## 243  0.834210526  0.416261808 0.5456731 0.8536804 0.3993535 0.56327543
## 568  0.833333333  0.415384615 0.5443645 0.8535490 0.3979135 0.56257745
## 565  0.832456140  0.414507422 0.5430622 0.8534173 0.3964795 0.56188119
## 515  0.831578947  0.413630229 0.5417661 0.8532853 0.3950514 0.56118665
## 108  0.830701754  0.412753036 0.5404762 0.8531532 0.3936293 0.56049383
## 947  0.829824561  0.411875843 0.5391924 0.8530207 0.3922131 0.55980271
## 774  0.828947368  0.410998650 0.5379147 0.8528881 0.3908028 0.55911330
## 145  0.828947368  0.413562753 0.5390071 0.8536585 0.3926656 0.56088561
## 879  0.828070175  0.412685560 0.5377358 0.8535262 0.3912621 0.56019656
## 982  0.827192982  0.411808367 0.5364706 0.8533937 0.3898643 0.55950920
## 1007 0.827192982  0.414372470 0.5375587 0.8541667 0.3917254 0.56127451
## 458  0.826315789  0.413495277 0.5362998 0.8540345 0.3903342 0.56058752
## 1179 0.825438596  0.412618084 0.5350467 0.8539020 0.3889487 0.55990220
## 839  0.824561404  0.411740891 0.5337995 0.8537693 0.3875688 0.55921856
## 392  0.824561404  0.414304993 0.5348837 0.8545455 0.3894292 0.56097561
## 1005 0.824561404  0.416869096 0.5359629 0.8553230 0.3912859 0.56272838
## 1254 0.823684211  0.415991903 0.5347222 0.8551913 0.3899135 0.56204380
## 858  0.822807018  0.415114710 0.5334873 0.8550593 0.3885466 0.56136087
## 744  0.821929825  0.414237517 0.5322581 0.8549270 0.3871851 0.56067961
## 1088 0.821929825  0.416801619 0.5333333 0.8557078 0.3890411 0.56242424
## 762  0.821052632  0.415924426 0.5321101 0.8555759 0.3876860 0.56174334
## 834  0.820175439  0.415047233 0.5308924 0.8554437 0.3863362 0.56106409
## 1520 0.819298246  0.414170040 0.5296804 0.8553114 0.3849917 0.56038647
## 546  0.818421053  0.413292848 0.5284738 0.8551787 0.3836525 0.55971049
## 58   0.817543860  0.412415655 0.5272727 0.8550459 0.3823186 0.55903614
## 465  0.816666667  0.411538462 0.5260771 0.8549128 0.3809899 0.55836342
## 583  0.816666667  0.414102564 0.5271493 0.8556985 0.3828479 0.56009615
## 150  0.816666667  0.416666667 0.5282167 0.8564857 0.3847024 0.56182473
## 144  0.816666667  0.419230769 0.5292793 0.8572744 0.3865537 0.56354916
## 285  0.816666667  0.421794872 0.5303371 0.8580645 0.3884016 0.56526946
## 620  0.815789474  0.420917679 0.5291480 0.8579336 0.3870816 0.56459330
## 857  0.814912281  0.420040486 0.5279642 0.8578024 0.3857666 0.56391876
## 211  0.814035088  0.419163293 0.5267857 0.8576710 0.3844567 0.56324582
## 380  0.814035088  0.421727395 0.5278396 0.8584644 0.3863040 0.56495828
## 288  0.814035088  0.424291498 0.5288889 0.8592593 0.3881481 0.56666667
## 291  0.814035088  0.426855601 0.5299335 0.8600556 0.3899891 0.56837099
## 488  0.814035088  0.429419703 0.5309735 0.8608534 0.3918269 0.57007126
## 398  0.814035088  0.431983806 0.5320088 0.8616527 0.3936616 0.57176750
## 985  0.813157895  0.431106613 0.5308370 0.8615242 0.3923612 0.57109005
## 480  0.813157895  0.433670715 0.5318681 0.8623256 0.3941937 0.57278107
## 272  0.812280702  0.432793522 0.5307018 0.8621974 0.3928991 0.57210402
## 875  0.811403509  0.431916329 0.5295405 0.8620690 0.3916094 0.57142857
## 1244 0.810526316  0.431039136 0.5283843 0.8619403 0.3903246 0.57075472
## 124  0.810526316  0.433603239 0.5294118 0.8627451 0.3921569 0.57243816
## 979  0.809649123  0.432726046 0.5282609 0.8626168 0.3908777 0.57176471
## 1444 0.808771930  0.431848853 0.5271150 0.8624883 0.3896033 0.57109283
## 125  0.808771930  0.434412955 0.5281385 0.8632959 0.3914344 0.57276995
## 118  0.807894737  0.433535762 0.5269978 0.8631678 0.3901656 0.57209848
## 89   0.807894737  0.436099865 0.5280172 0.8639775 0.3919947 0.57377049
## 493  0.807017544  0.435222672 0.5268817 0.8638498 0.3907315 0.57309942
## 632  0.806140351  0.434345479 0.5257511 0.8637218 0.3894729 0.57242991
## 1058 0.806140351  0.436909582 0.5267666 0.8645343 0.3913009 0.57409568
## 760  0.805263158  0.436032389 0.5256410 0.8644068 0.3900478 0.57342657
## 1109 0.804385965  0.435155196 0.5245203 0.8642790 0.3887992 0.57275902
## 355  0.803508772  0.434278003 0.5234043 0.8641509 0.3875552 0.57209302
## 1110 0.802631579  0.433400810 0.5222930 0.8640227 0.3863157 0.57142857
## 205  0.801754386  0.432523617 0.5211864 0.8638941 0.3850806 0.57076566
## 749  0.800877193  0.431646424 0.5200846 0.8637654 0.3838499 0.57010429
## 1312 0.800877193  0.434210526 0.5210970 0.8645833 0.3856804 0.57175926
## 1074 0.800000000  0.433333333 0.5200000 0.8644550 0.3844550 0.57109827
## 1140 0.799122807  0.432456140 0.5189076 0.8643264 0.3832339 0.57043880
## 208  0.799122807  0.435020243 0.5199161 0.8651472 0.3850633 0.57208766
## 797  0.798245614  0.434143050 0.5188285 0.8650190 0.3838475 0.57142857
## 807  0.797368421  0.433265857 0.5177453 0.8648906 0.3826359 0.57077100
## 1442 0.796491228  0.432388664 0.5166667 0.8647619 0.3814286 0.57011494
## 1102 0.795614035  0.431511471 0.5155925 0.8646330 0.3802255 0.56946039
## 1303 0.795614035  0.434075574 0.5165975 0.8654580 0.3820555 0.57110092
## 396  0.795614035  0.436639676 0.5175983 0.8662846 0.3838830 0.57273769
## 1283 0.794736842  0.435762483 0.5165289 0.8661568 0.3826857 0.57208238
## 1281 0.793859649  0.434885290 0.5154639 0.8660287 0.3814926 0.57142857
## 996  0.793859649  0.437449393 0.5164609 0.8668582 0.3833191 0.57305936
## 182  0.793859649  0.440013495 0.5174538 0.8676894 0.3851432 0.57468643
## 1387 0.792982456  0.439136302 0.5163934 0.8675624 0.3839558 0.57403189
## 393  0.792982456  0.441700405 0.5173824 0.8683958 0.3857782 0.57565415
## 11   0.792982456  0.444264507 0.5183673 0.8692308 0.3875981 0.57727273
## 1445 0.792105263  0.443387314 0.5173116 0.8691049 0.3864165 0.57661748
## 1264 0.791228070  0.442510121 0.5162602 0.8689788 0.3852390 0.57596372
## 171  0.791228070  0.445074224 0.5172414 0.8698168 0.3870582 0.57757644
## 1216 0.790350877  0.444197031 0.5161943 0.8696911 0.3858855 0.57692308
## 1108 0.789473684  0.443319838 0.5151515 0.8695652 0.3847167 0.57627119
## 1482 0.788596491  0.442442645 0.5141129 0.8694391 0.3835520 0.57562077
## 1045 0.787719298  0.441565452 0.5130785 0.8693127 0.3823912 0.57497182
## 587  0.787719298  0.444129555 0.5140562 0.8701550 0.3842113 0.57657658
## 853  0.786842105  0.443252362 0.5130261 0.8700291 0.3830552 0.57592801
## 787  0.786842105  0.445816464 0.5140000 0.8708738 0.3848738 0.57752809
## 280  0.786842105  0.448380567 0.5149701 0.8717201 0.3866902 0.57912458
## 117  0.785964912  0.447503374 0.5139442 0.8715953 0.3855396 0.57847534
## 927  0.785087719  0.446626181 0.5129225 0.8714703 0.3843928 0.57782755
## 534  0.784210526  0.445748988 0.5119048 0.8713450 0.3832498 0.57718121
## 738  0.783333333  0.444871795 0.5108911 0.8712195 0.3821106 0.57653631
## 675  0.782456140  0.443994602 0.5098814 0.8710938 0.3809752 0.57589286
## 938  0.781578947  0.443117409 0.5088757 0.8709677 0.3798435 0.57525084
## 1215 0.780701754  0.442240216 0.5078740 0.8708415 0.3787155 0.57461024
## 69   0.779824561  0.441363023 0.5068762 0.8707150 0.3775912 0.57397108
## 359  0.778947368  0.440485830 0.5058824 0.8705882 0.3764706 0.57333333
## 261  0.778947368  0.443049933 0.5068493 0.8714426 0.3782919 0.57491676
## 1282 0.778070175  0.442172740 0.5058594 0.8713163 0.3771757 0.57427938
## 529  0.777192982  0.441295547 0.5048733 0.8711898 0.3760631 0.57364341
## 305  0.777192982  0.443859649 0.5058366 0.8720472 0.3778838 0.57522124
## 1120 0.776315789  0.442982456 0.5048544 0.8719212 0.3767756 0.57458564
## 940  0.775438596  0.442105263 0.5038760 0.8717949 0.3756708 0.57395143
## 1009 0.774561404  0.441228070 0.5029014 0.8716683 0.3745697 0.57331863
## 264  0.773684211  0.440350877 0.5019305 0.8715415 0.3734720 0.57268722
## 641  0.772807018  0.439473684 0.5009634 0.8714144 0.3723778 0.57205721
## 1451 0.771929825  0.438596491 0.5000000 0.8712871 0.3712871 0.57142857
## 376  0.771929825  0.441160594 0.5009597 0.8721506 0.3731103 0.57299671
## 256  0.771929825  0.443724696 0.5019157 0.8730159 0.3749316 0.57456140
## 1284 0.771052632  0.442847503 0.5009560 0.8728898 0.3738458 0.57393209
## 952  0.770175439  0.441970310 0.5000000 0.8727634 0.3727634 0.57330416
## 1055 0.770175439  0.444534413 0.5009524 0.8736318 0.3745842 0.57486339
## 232  0.770175439  0.447098516 0.5019011 0.8745020 0.3764031 0.57641921
## 674  0.769298246  0.446221323 0.5009488 0.8743769 0.3753256 0.57579062
## 945  0.768421053  0.445344130 0.5000000 0.8742515 0.3742515 0.57516340
## 1146 0.767543860  0.444466937 0.4990548 0.8741259 0.3731807 0.57453754
## 997  0.767543860  0.447031039 0.5000000 0.8750000 0.3750000 0.57608696
## 1528 0.766666667  0.446153846 0.4990584 0.8748749 0.3739333 0.57546145
## 1498 0.765789474  0.445276653 0.4981203 0.8747495 0.3728698 0.57483731
## 1375 0.764912281  0.444399460 0.4971857 0.8746239 0.3718096 0.57421452
## 1046 0.764035088  0.443522267 0.4962547 0.8744980 0.3707527 0.57359307
## 700  0.764035088  0.446086370 0.4971963 0.8753769 0.3725731 0.57513514
## 1222 0.763157895  0.445209177 0.4962687 0.8752515 0.3715202 0.57451404
## 80   0.763157895  0.447773279 0.4972067 0.8761329 0.3733396 0.57605178
## 849  0.762280702  0.446896086 0.4962825 0.8760081 0.3722906 0.57543103
## 270  0.761403509  0.446018893 0.4953618 0.8758829 0.3712447 0.57481163
## 1416 0.761403509  0.448582996 0.4962963 0.8767677 0.3730640 0.57634409
## 687  0.760526316  0.447705803 0.4953789 0.8766431 0.3720220 0.57572503
## 1006 0.760526316  0.450269906 0.4963100 0.8775304 0.3738403 0.57725322
## 1224 0.759649123  0.449392713 0.4953959 0.8774063 0.3728022 0.57663451
## 668  0.758771930  0.448515520 0.4944853 0.8772819 0.3717672 0.57601713
## 965  0.757894737  0.447638327 0.4935780 0.8771574 0.3707353 0.57540107
## 835  0.757017544  0.446761134 0.4926740 0.8770325 0.3697065 0.57478632
## 688  0.756140351  0.445883941 0.4917733 0.8769074 0.3686807 0.57417289
## 690  0.756140351  0.448448043 0.4927007 0.8778004 0.3705011 0.57569296
## 968  0.755263158  0.447570850 0.4918033 0.8776758 0.3694791 0.57507987
## 113  0.754385965  0.446693657 0.4909091 0.8775510 0.3684601 0.57446809
## 1326 0.753508772  0.445816464 0.4900181 0.8774259 0.3674441 0.57385760
## 540  0.752631579  0.444939271 0.4891304 0.8773006 0.3664310 0.57324841
## 739  0.751754386  0.444062078 0.4882459 0.8771750 0.3654210 0.57264051
## 1054 0.750877193  0.443184885 0.4873646 0.8770492 0.3644138 0.57203390
## 572  0.750000000  0.442307692 0.4864865 0.8769231 0.3634096 0.57142857
## 421  0.749122807  0.441430499 0.4856115 0.8767967 0.3624082 0.57082452
## 953  0.748245614  0.440553306 0.4847397 0.8766701 0.3614098 0.57022175
## 1359 0.747368421  0.439676113 0.4838710 0.8765432 0.3604142 0.56962025
## 334  0.746491228  0.438798920 0.4830054 0.8764161 0.3594214 0.56902002
## 855  0.745614035  0.437921727 0.4821429 0.8762887 0.3584315 0.56842105
## 1443 0.744736842  0.437044534 0.4812834 0.8761610 0.3574444 0.56782334
## 96   0.743859649  0.436167341 0.4804270 0.8760331 0.3564601 0.56722689
## 1153 0.742982456  0.435290148 0.4795737 0.8759049 0.3554786 0.56663169
## 1213 0.742105263  0.434412955 0.4787234 0.8757764 0.3544998 0.56603774
## 679  0.741228070  0.433535762 0.4778761 0.8756477 0.3535238 0.56544503
## 1341 0.740350877  0.432658570 0.4770318 0.8755187 0.3525505 0.56485356
## 916  0.739473684  0.431781377 0.4761905 0.8753894 0.3515799 0.56426332
## 373  0.739473684  0.434345479 0.4771127 0.8762994 0.3534121 0.56576200
## 874  0.738596491  0.433468286 0.4762742 0.8761707 0.3524448 0.56517205
## 944  0.737719298  0.432591093 0.4754386 0.8760417 0.3514803 0.56458333
## 139  0.737719298  0.435155196 0.4763573 0.8769552 0.3533124 0.56607700
## 1017 0.736842105  0.434278003 0.4755245 0.8768267 0.3523512 0.56548857
## 356  0.735964912  0.433400810 0.4746946 0.8766980 0.3513926 0.56490135
## 1390 0.735087719  0.432523617 0.4738676 0.8765690 0.3504366 0.56431535
## 548  0.734210526  0.431646424 0.4730435 0.8764398 0.3494833 0.56373057
## 266  0.733333333  0.430769231 0.4722222 0.8763103 0.3485325 0.56314700
## 336  0.732456140  0.429892038 0.4714038 0.8761805 0.3475843 0.56256463
## 634  0.731578947  0.429014845 0.4705882 0.8760504 0.3466387 0.56198347
## 1034 0.731578947  0.431578947 0.4715026 0.8769716 0.3484742 0.56346749
## 1044 0.730701754  0.430701754 0.4706897 0.8768421 0.3475318 0.56288660
## 138  0.730701754  0.433265857 0.4716007 0.8777661 0.3493668 0.56436663
## 1107 0.729824561  0.432388664 0.4707904 0.8776371 0.3484275 0.56378601
## 1144 0.728947368  0.431511471 0.4699828 0.8775079 0.3474908 0.56320658
## 1025 0.728070175  0.430634278 0.4691781 0.8773784 0.3465565 0.56262834
## 385  0.728070175  0.433198381 0.4700855 0.8783069 0.3483923 0.56410256
## 1041 0.728070175  0.435762483 0.4709898 0.8792373 0.3502270 0.56557377
## 187  0.728070175  0.438326586 0.4718910 0.8801697 0.3520606 0.56704197
## 94   0.728070175  0.440890688 0.4727891 0.8811040 0.3538931 0.56850716
## 23   0.728070175  0.443454791 0.4736842 0.8820404 0.3557246 0.56996936
## 486  0.728070175  0.446018893 0.4745763 0.8829787 0.3575550 0.57142857
## 409  0.727192982  0.445141700 0.4737733 0.8828541 0.3566274 0.57084608
## 346  0.727192982  0.447705803 0.4746622 0.8837953 0.3584575 0.57230143
## 430  0.727192982  0.450269906 0.4755481 0.8847385 0.3602866 0.57375381
## 1343 0.726315789  0.449392713 0.4747475 0.8846154 0.3593629 0.57317073
## 1212 0.725438596  0.448515520 0.4739496 0.8844920 0.3584416 0.57258883
## 167  0.724561404  0.447638327 0.4731544 0.8843683 0.3575227 0.57200811
## 319  0.724561404  0.450202429 0.4740369 0.8853162 0.3593530 0.57345491
## 286  0.724561404  0.452766532 0.4749164 0.8862661 0.3611825 0.57489879
## 82   0.724561404  0.455330634 0.4757930 0.8872180 0.3630110 0.57633974
## 174  0.724561404  0.457894737 0.4766667 0.8881720 0.3648387 0.57777778
## 637  0.723684211  0.457017544 0.4758735 0.8880517 0.3639252 0.57719475
## 962  0.722807018  0.456140351 0.4750831 0.8879310 0.3630141 0.57661290
## 531  0.721929825  0.455263158 0.4742952 0.8878101 0.3621053 0.57603223
## 671  0.721052632  0.454385965 0.4735099 0.8876890 0.3611989 0.57545272
## 1159 0.720175439  0.453508772 0.4727273 0.8875676 0.3602948 0.57487437
## 1105 0.719298246  0.452631579 0.4719472 0.8874459 0.3593931 0.57429719
## 39   0.719298246  0.455195682 0.4728171 0.8884074 0.3612245 0.57572718
## 528  0.718421053  0.454318489 0.4720395 0.8882863 0.3603258 0.57515030
## 114  0.717543860  0.453441296 0.4712644 0.8881650 0.3594294 0.57457457
## 888  0.717543860  0.456005398 0.4721311 0.8891304 0.3612616 0.57600000
## 383  0.717543860  0.458569501 0.4729951 0.8900979 0.3630930 0.57742258
## 40   0.717543860  0.461133603 0.4738562 0.8910675 0.3649237 0.57884232
## 1338 0.716666667  0.460256410 0.4730832 0.8909487 0.3640319 0.57826520
## 532  0.715789474  0.459379217 0.4723127 0.8908297 0.3631424 0.57768924
## 394  0.715789474  0.461943320 0.4731707 0.8918033 0.3649740 0.57910448
## 162  0.714912281  0.461066127 0.4724026 0.8916849 0.3640875 0.57852883
## 657  0.714035088  0.460188934 0.4716370 0.8915663 0.3632032 0.57795432
## 357  0.713157895  0.459311741 0.4708738 0.8914474 0.3623212 0.57738095
## 786  0.713157895  0.461875843 0.4717286 0.8924259 0.3641545 0.57879088
## 255  0.713157895  0.464439946 0.4725806 0.8934066 0.3659872 0.58019802
## 1069 0.712280702  0.463562753 0.4718196 0.8932893 0.3651090 0.57962413
## 88   0.711403509  0.462685560 0.4710611 0.8931718 0.3642329 0.57905138
## 1324 0.710526316  0.461808367 0.4703050 0.8930540 0.3633590 0.57847976
## 1420 0.709649123  0.460931174 0.4695513 0.8929360 0.3624873 0.57790927
## 558  0.708771930  0.460053981 0.4688000 0.8928177 0.3616177 0.57733990
## 105  0.707894737  0.459176788 0.4680511 0.8926991 0.3607502 0.57677165
## 1428 0.707017544  0.458299595 0.4673046 0.8925803 0.3598849 0.57620452
## 1355 0.706140351  0.457422402 0.4665605 0.8924612 0.3590217 0.57563851
## 608  0.705263158  0.456545209 0.4658188 0.8923418 0.3581606 0.57507360
## 808  0.704385965  0.455668016 0.4650794 0.8922222 0.3573016 0.57450980
## 317  0.704385965  0.458232119 0.4659271 0.8932147 0.3591418 0.57590597
## 1260 0.703508772  0.457354926 0.4651899 0.8930958 0.3582856 0.57534247
## 1028 0.702631579  0.456477733 0.4644550 0.8929766 0.3574316 0.57478006
## 1523 0.701754386  0.455600540 0.4637224 0.8928571 0.3565795 0.57421875
## 102  0.701754386  0.458164642 0.4645669 0.8938547 0.3584217 0.57560976
## 76   0.701754386  0.460728745 0.4654088 0.8948546 0.3602634 0.57699805
## 820  0.700877193  0.459851552 0.4646782 0.8947368 0.3594150 0.57643622
## 1230 0.700000000  0.458974359 0.4639498 0.8946188 0.3585687 0.57587549
## 943  0.699122807  0.458097166 0.4632238 0.8945006 0.3577243 0.57531584
## 800  0.698245614  0.457219973 0.4625000 0.8943820 0.3568820 0.57475728
## 29   0.697368421  0.456342780 0.4617785 0.8942632 0.3560417 0.57419981
## 83   0.697368421  0.458906883 0.4626168 0.8952703 0.3578871 0.57558140
## 202  0.697368421  0.461470985 0.4634526 0.8962796 0.3597322 0.57696031
## 695  0.697368421  0.464035088 0.4642857 0.8972912 0.3615769 0.57833656
## 281  0.697368421  0.466599190 0.4651163 0.8983051 0.3634214 0.57971014
## 475  0.696491228  0.465721997 0.4643963 0.8981900 0.3625863 0.57915058
## 1266 0.695614035  0.464844804 0.4636785 0.8980747 0.3617533 0.57859209
## 1521 0.694736842  0.463967611 0.4629630 0.8979592 0.3609221 0.57803468
## 459  0.693859649  0.463090418 0.4622496 0.8978434 0.3600930 0.57747834
## 1298 0.692982456  0.462213225 0.4615385 0.8977273 0.3592657 0.57692308
## 169  0.692105263  0.461336032 0.4608295 0.8976109 0.3584404 0.57636888
## 1277 0.691228070  0.460458839 0.4601227 0.8974943 0.3576170 0.57581574
## 103  0.690350877  0.459581646 0.4594181 0.8973774 0.3567955 0.57526366
## 1299 0.689473684  0.458704453 0.4587156 0.8972603 0.3559759 0.57471264
## 461  0.688596491  0.457827260 0.4580153 0.8971429 0.3551581 0.57416268
## 116  0.687719298  0.456950067 0.4573171 0.8970252 0.3543422 0.57361377
## 301  0.687719298  0.459514170 0.4581431 0.8980527 0.3561958 0.57497612
## 321  0.686842105  0.458636977 0.4574468 0.8979358 0.3553826 0.57442748
## 504  0.685964912  0.457759784 0.4567527 0.8978186 0.3545713 0.57387989
## 791  0.685964912  0.460323887 0.4575758 0.8988506 0.3564263 0.57523810
## 1267 0.685087719  0.459446694 0.4568835 0.8987342 0.3556177 0.57469077
## 347  0.685087719  0.462010796 0.4577039 0.8997696 0.3574735 0.57604563
## 555  0.684210526  0.461133603 0.4570136 0.8996540 0.3566676 0.57549858
## 1241 0.683333333  0.460256410 0.4563253 0.8995381 0.3558634 0.57495256
## 942  0.682456140  0.459379217 0.4556391 0.8994220 0.3550611 0.57440758
## 152  0.681578947  0.461066127 0.4557721 0.9003476 0.3561197 0.57521287
## 501  0.681578947  0.461066127 0.4557721 0.9003476 0.3561197 0.57521287
## 447  0.680701754  0.460188934 0.4550898 0.9002320 0.3553218 0.57466919
## 1020 0.679824561  0.459311741 0.4544096 0.9001161 0.3545257 0.57412653
## 1085 0.678947368  0.458434548 0.4537313 0.9000000 0.3537313 0.57358491
## 1492 0.678070175  0.457557355 0.4530551 0.8998836 0.3529387 0.57304430
## 669  0.677192982  0.456680162 0.4523810 0.8997669 0.3521479 0.57250471
## 535  0.676315789  0.455802969 0.4517088 0.8996499 0.3513587 0.57196613
## 115  0.675438596  0.454925776 0.4510386 0.8995327 0.3505713 0.57142857
## 1373 0.674561404  0.454048583 0.4503704 0.8994152 0.3497856 0.57089202
## 673  0.673684211  0.453171390 0.4497041 0.8992974 0.3490016 0.57035647
## 312  0.672807018  0.452294197 0.4490399 0.8991794 0.3482192 0.56982193
## 297  0.672807018  0.454858300 0.4498525 0.9002347 0.3500872 0.57116105
## 382  0.672807018  0.457422402 0.4506627 0.9012926 0.3519553 0.57249766
## 1057 0.672807018  0.459986505 0.4514706 0.9023529 0.3538235 0.57383178
## 87   0.672807018  0.462550607 0.4522761 0.9034158 0.3556918 0.57516340
## 645  0.671929825  0.461673414 0.4516129 0.9033019 0.3549148 0.57462687
## 751  0.671052632  0.460796221 0.4509517 0.9031877 0.3541394 0.57409133
## 1252 0.670175439  0.459919028 0.4502924 0.9030733 0.3533657 0.57355680
## 729  0.669298246  0.459041835 0.4496350 0.9029586 0.3525936 0.57302326
## 45   0.668421053  0.458164642 0.4489796 0.9028436 0.3518232 0.57249071
## 1243 0.667543860  0.457287449 0.4483261 0.9027284 0.3510544 0.57195915
## 410  0.666666667  0.456410256 0.4476744 0.9026128 0.3502872 0.57142857
## 85   0.666666667  0.458974359 0.4484761 0.9036861 0.3521621 0.57275255
## 516  0.665789474  0.458097166 0.4478261 0.9035714 0.3513975 0.57222222
## 268  0.664912281  0.457219973 0.4471780 0.9034565 0.3506345 0.57169288
## 495  0.664035088  0.456342780 0.4465318 0.9033413 0.3498731 0.57116451
## 12   0.664035088  0.458906883 0.4473304 0.9044205 0.3517510 0.57248384
## 32   0.663157895  0.458029690 0.4466859 0.9043062 0.3509921 0.57195572
## 732  0.662280702  0.457152497 0.4460432 0.9041916 0.3502348 0.57142857
## 78   0.662280702  0.459716599 0.4468391 0.9052758 0.3521149 0.57274401
## 79   0.662280702  0.462280702 0.4476327 0.9063625 0.3539953 0.57405704
## 823  0.661403509  0.461403509 0.4469914 0.9062500 0.3532414 0.57352941
## 643  0.660526316  0.460526316 0.4463519 0.9061372 0.3524891 0.57300275
## 890  0.660526316  0.463090418 0.4471429 0.9072289 0.3543718 0.57431193
## 198  0.660526316  0.465654521 0.4479315 0.9083233 0.3562548 0.57561870
## 257  0.660526316  0.468218623 0.4487179 0.9094203 0.3581382 0.57692308
## 801  0.659649123  0.467341430 0.4480797 0.9093108 0.3573904 0.57639524
## 1419 0.658771930  0.466464238 0.4474432 0.9092010 0.3566442 0.57586837
## 296  0.658771930  0.469028340 0.4482270 0.9103030 0.3585300 0.57716895
## 1130 0.657894737  0.468151147 0.4475921 0.9101942 0.3577862 0.57664234
## 1261 0.657017544  0.467273954 0.4469590 0.9100851 0.3570440 0.57611668
## 921  0.656140351  0.466396761 0.4463277 0.9099757 0.3563034 0.57559199
## 1490 0.655263158  0.468083671 0.4464789 0.9109756 0.3574545 0.57636364
## 1507 0.655263158  0.468083671 0.4464789 0.9109756 0.3574545 0.57636364
## 726  0.654385965  0.467206478 0.4458509 0.9108669 0.3567178 0.57584015
## 653  0.653508772  0.466329285 0.4452247 0.9107579 0.3559827 0.57531760
## 510  0.652631579  0.465452092 0.4446003 0.9106487 0.3552490 0.57479601
## 175  0.652631579  0.468016194 0.4453782 0.9117647 0.3571429 0.57608696
## 67   0.652631579  0.470580297 0.4461538 0.9128834 0.3590373 0.57737557
## 1210 0.651754386  0.469703104 0.4455307 0.9127764 0.3583071 0.57685353
## 379  0.651754386  0.472267206 0.4463040 0.9138991 0.3602032 0.57813911
## 56   0.651754386  0.474831309 0.4470752 0.9150246 0.3620998 0.57942238
## 253  0.651754386  0.477395412 0.4478442 0.9161529 0.3639971 0.58070334
## 780  0.650877193  0.476518219 0.4472222 0.9160494 0.3632716 0.58018018
## 633  0.650000000  0.475641026 0.4466019 0.9159456 0.3625476 0.57965797
## 63   0.649122807  0.474763833 0.4459834 0.9158416 0.3618250 0.57913669
## 630  0.648245614  0.473886640 0.4453665 0.9157373 0.3611038 0.57861635
## 361  0.647368421  0.473009447 0.4447514 0.9156328 0.3603841 0.57809695
## 1481 0.646491228  0.472132254 0.4441379 0.9155280 0.3596659 0.57757848
## 860  0.645614035  0.471255061 0.4435262 0.9154229 0.3589491 0.57706093
## 289  0.645614035  0.473819163 0.4442916 0.9165629 0.3608545 0.57833483
## 1245 0.644736842  0.472941970 0.4436813 0.9164589 0.3601402 0.57781753
## 271  0.643859649  0.472064777 0.4430727 0.9163546 0.3594273 0.57730116
## 658  0.642982456  0.471187584 0.4424658 0.9162500 0.3587158 0.57678571
## 345  0.642982456  0.473751687 0.4432285 0.9173967 0.3606252 0.57805531
## 1032 0.642982456  0.476315789 0.4439891 0.9185464 0.3625354 0.57932264
## 772  0.642105263  0.475438596 0.4433834 0.9184442 0.3618275 0.57880677
## 362  0.641228070  0.474561404 0.4427793 0.9183417 0.3611210 0.57829181
## 223  0.640350877  0.473684211 0.4421769 0.9182390 0.3604159 0.57777778
## 22   0.639473684  0.472807018 0.4415761 0.9181360 0.3597121 0.57726465
## 1038 0.639473684  0.475371120 0.4423338 0.9192938 0.3616276 0.57852706
## 1460 0.638596491  0.474493927 0.4417344 0.9191919 0.3609263 0.57801418
## 214  0.637719298  0.473616734 0.4411367 0.9190898 0.3602264 0.57750221
## 1167 0.636842105  0.472739541 0.4405405 0.9189873 0.3595279 0.57699115
## 391  0.635964912  0.471862348 0.4399460 0.9188847 0.3588307 0.57648099
## 367  0.635087719  0.470985155 0.4393531 0.9187817 0.3581348 0.57597173
## 1429 0.634210526  0.470107962 0.4387618 0.9186785 0.3574403 0.57546337
## 390  0.633333333  0.469230769 0.4381720 0.9185751 0.3567471 0.57495591
## 521  0.632456140  0.468353576 0.4375839 0.9184713 0.3560552 0.57444934
## 527  0.631578947  0.467476383 0.4369973 0.9183673 0.3553647 0.57394366
## 445  0.630701754  0.466599190 0.4364123 0.9182631 0.3546754 0.57343887
## 759  0.629824561  0.465721997 0.4358289 0.9181586 0.3539874 0.57293497
## 1113 0.628947368  0.464844804 0.4352470 0.9180538 0.3533008 0.57243196
## 1189 0.628070175  0.463967611 0.4346667 0.9179487 0.3526154 0.57192982
## 354  0.627192982  0.463090418 0.4340879 0.9178434 0.3519313 0.57142857
## 381  0.627192982  0.465654521 0.4348404 0.9190231 0.3538636 0.57267951
## 360  0.626315789  0.464777328 0.4342629 0.9189189 0.3531819 0.57217848
## 444  0.625438596  0.463900135 0.4336870 0.9188144 0.3525014 0.57167832
## 599  0.624561404  0.463022942 0.4331126 0.9187097 0.3518223 0.57117904
## 1251 0.623684211  0.462145749 0.4325397 0.9186047 0.3511443 0.57068063
## 872  0.622807018  0.461268556 0.4319683 0.9184994 0.3504676 0.57018309
## 917  0.621929825  0.460391363 0.4313984 0.9183938 0.3497922 0.56968641
## 1480 0.621052632  0.459514170 0.4308300 0.9182879 0.3491180 0.56919060
## 909  0.620175439  0.458636977 0.4302632 0.9181818 0.3484450 0.56869565
## 1459 0.619298246  0.457759784 0.4296978 0.9180754 0.3477732 0.56820156
## 603  0.618421053  0.456882591 0.4291339 0.9179688 0.3471026 0.56770833
## 326  0.617543860  0.456005398 0.4285714 0.9178618 0.3464332 0.56721596
## 1339 0.616666667  0.455128205 0.4280105 0.9177546 0.3457650 0.56672444
## 363  0.615789474  0.454251012 0.4274510 0.9176471 0.3450980 0.56623377
## 176  0.615789474  0.456815115 0.4281984 0.9188482 0.3470466 0.56747405
## 315  0.615789474  0.459379217 0.4289439 0.9200524 0.3489964 0.56871219
## 615  0.614912281  0.458502024 0.4283854 0.9199475 0.3483329 0.56822107
## 623  0.614035088  0.457624831 0.4278283 0.9198423 0.3476707 0.56773080
## 140  0.614035088  0.460188934 0.4285714 0.9210526 0.3496241 0.56896552
## 1353 0.613157895  0.459311741 0.4280156 0.9209486 0.3489642 0.56847545
## 818  0.612280702  0.458434548 0.4274611 0.9208443 0.3483055 0.56798623
## 727  0.611403509  0.457557355 0.4269082 0.9207398 0.3476479 0.56749785
## 372  0.611403509  0.460121457 0.4276486 0.9219577 0.3496063 0.56872852
## 742  0.610526316  0.459244265 0.4270968 0.9218543 0.3489511 0.56824034
## 1452 0.609649123  0.458367072 0.4265464 0.9217507 0.3482971 0.56775300
## 1518 0.608771930  0.457489879 0.4259974 0.9216467 0.3476442 0.56726650
## 676  0.607894737  0.456612686 0.4254499 0.9215426 0.3469924 0.56678082
## 533  0.607017544  0.455735493 0.4249037 0.9214381 0.3463418 0.56629598
## 771  0.606140351  0.454858300 0.4243590 0.9213333 0.3456923 0.56581197
## 1096 0.606140351  0.457422402 0.4250960 0.9225634 0.3476594 0.56703672
## 343  0.605263158  0.456545209 0.4245524 0.9224599 0.3470123 0.56655290
## 1479 0.604385965  0.455668016 0.4240102 0.9223561 0.3463663 0.56606991
## 411  0.603508772  0.454790823 0.4234694 0.9222520 0.3457214 0.56558773
## 914  0.602631579  0.453913630 0.4229299 0.9221477 0.3450776 0.56510638
## 1162 0.601754386  0.453036437 0.4223919 0.9220430 0.3444349 0.56462585
## 1204 0.601754386  0.455600540 0.4231258 0.9232840 0.3464098 0.56584537
## 747  0.600877193  0.454723347 0.4225888 0.9231806 0.3457694 0.56536503
## 5    0.600877193  0.457287449 0.4233207 0.9244265 0.3477471 0.56658185
## 1335 0.600000000  0.456410256 0.4227848 0.9243243 0.3471091 0.56610169
## 862  0.599122807  0.455533063 0.4222503 0.9242219 0.3464722 0.56562235
## 1268 0.598245614  0.454655870 0.4217172 0.9241192 0.3458364 0.56514382
## 1418 0.598245614  0.457219973 0.4224464 0.9253731 0.3478195 0.56635672
## 92   0.598245614  0.459784076 0.4231738 0.9266304 0.3498042 0.56756757
## 60   0.598245614  0.462348178 0.4238994 0.9278912 0.3517905 0.56877637
## 502  0.597368421  0.461470985 0.4233668 0.9277929 0.3511597 0.56829680
## 9    0.597368421  0.464035088 0.4240903 0.9290587 0.3531490 0.56950295
## 107  0.596491228  0.463157895 0.4235589 0.9289617 0.3525206 0.56902357
## 670  0.595614035  0.462280702 0.4230288 0.9288646 0.3518934 0.56854500
## 1379 0.594736842  0.461403509 0.4225000 0.9287671 0.3512671 0.56806723
## 201  0.594736842  0.463967611 0.4232210 0.9300412 0.3532621 0.56926952
## 1263 0.593859649  0.463090418 0.4226933 0.9299451 0.3526383 0.56879195
## 1187 0.592982456  0.462213225 0.4221669 0.9298487 0.3520156 0.56831517
## 309  0.592105263  0.461336032 0.4216418 0.9297521 0.3513939 0.56783920
## 602  0.591228070  0.460458839 0.4211180 0.9296552 0.3507732 0.56736402
## 750  0.590350877  0.459581646 0.4205955 0.9295580 0.3501535 0.56688963
## 408  0.589473684  0.458704453 0.4200743 0.9294606 0.3495349 0.56641604
## 636  0.588596491  0.457827260 0.4195545 0.9293629 0.3489173 0.56594324
## 667  0.587719298  0.456950067 0.4190358 0.9292649 0.3483008 0.56547123
## 672  0.586842105  0.456072874 0.4185185 0.9291667 0.3476852 0.56500000
## 1157 0.585964912  0.455195682 0.4180025 0.9290682 0.3470706 0.56452956
## 1410 0.585964912  0.457759784 0.4187192 0.9303621 0.3490813 0.56572379
## 121  0.585087719  0.456882591 0.4182042 0.9302650 0.3484692 0.56525353
## 929  0.584210526  0.456005398 0.4176904 0.9301676 0.3478580 0.56478405
## 592  0.584210526  0.458569501 0.4184049 0.9314685 0.3498734 0.56597510
## 74   0.583333333  0.457692308 0.4178922 0.9313725 0.3492647 0.56550580
## 1352 0.582456140  0.456815115 0.4173807 0.9312763 0.3486570 0.56503728
## 731  0.581578947  0.455937922 0.4168704 0.9311798 0.3480502 0.56456954
## 14   0.580701754  0.455060729 0.4163614 0.9310830 0.3474444 0.56410256
## 1019 0.579824561  0.454183536 0.4158537 0.9309859 0.3468396 0.56363636
## 1340 0.578947368  0.453306343 0.4153471 0.9308886 0.3462357 0.56317093
## 180  0.578947368  0.455870445 0.4160584 0.9322034 0.3482618 0.56435644
## 1405 0.578070175  0.454993252 0.4155529 0.9321075 0.3476604 0.56389118
## 550  0.577192982  0.454116059 0.4150485 0.9320113 0.3470599 0.56342669
## 861  0.576315789  0.453238866 0.4145455 0.9319149 0.3464603 0.56296296
## 2    0.575438596  0.452361673 0.4140436 0.9318182 0.3458618 0.56250000
## 1205 0.575438596  0.454925776 0.4147521 0.9331437 0.3478958 0.56368118
## 1394 0.574561404  0.454048583 0.4142512 0.9330484 0.3472996 0.56321839
## 248  0.574561404  0.456612686 0.4149578 0.9343795 0.3493372 0.56439705
## 552  0.573684211  0.455735493 0.4144578 0.9342857 0.3487435 0.56393443
## 221  0.572807018  0.454858300 0.4139591 0.9341917 0.3481508 0.56347256
## 605  0.571929825  0.453981107 0.4134615 0.9340974 0.3475590 0.56301146
## 158  0.571052632  0.453103914 0.4129652 0.9340029 0.3469681 0.56255110
## 911  0.570175439  0.452226721 0.4124700 0.9339080 0.3463781 0.56209150
## 1015 0.569298246  0.451349528 0.4119760 0.9338129 0.3457890 0.56163265
## 1465 0.568421053  0.450472335 0.4114833 0.9337176 0.3452008 0.56117455
## 946  0.567543860  0.449595142 0.4109916 0.9336219 0.3446136 0.56071720
## 1208 0.566666667  0.448717949 0.4105012 0.9335260 0.3440272 0.56026059
## 1310 0.566666667  0.451282051 0.4112038 0.9348770 0.3460808 0.56143206
## 1275 0.565789474  0.450404858 0.4107143 0.9347826 0.3454969 0.56097561
## 120  0.564912281  0.449527665 0.4102259 0.9346880 0.3449139 0.56051990
## 993  0.564035088  0.448650472 0.4097387 0.9345930 0.3443317 0.56006494
## 582  0.563157895  0.447773279 0.4092527 0.9344978 0.3437505 0.55961071
## 1257 0.562280702  0.446896086 0.4087678 0.9344023 0.3431701 0.55915721
## 1431 0.561403509  0.446018893 0.4082840 0.9343066 0.3425906 0.55870445
## 1280 0.560526316  0.445141700 0.4078014 0.9342105 0.3420119 0.55825243
## 1279 0.559649123  0.444264507 0.4073200 0.9341142 0.3414342 0.55780113
## 1225 0.558771930  0.443387314 0.4068396 0.9340176 0.3408572 0.55735057
## 713  0.557894737  0.442510121 0.4063604 0.9339207 0.3402811 0.55690073
## 989  0.557017544  0.441632928 0.4058824 0.9338235 0.3397059 0.55645161
## 715  0.556140351  0.440755735 0.4054054 0.9337261 0.3391315 0.55600322
## 263  0.555263158  0.439878543 0.4049296 0.9336283 0.3385579 0.55555556
## 48   0.554385965  0.439001350 0.4044549 0.9335303 0.3379851 0.55510861
## 1491 0.553508772  0.438124157 0.4039813 0.9334320 0.3374132 0.55466238
## 567  0.552631579  0.437246964 0.4035088 0.9333333 0.3368421 0.55421687
## 1425 0.551754386  0.436369771 0.4030374 0.9332344 0.3362718 0.55377207
## 311  0.550877193  0.435492578 0.4025671 0.9331352 0.3357023 0.55332799
## 1003 0.550877193  0.438056680 0.4032634 0.9345238 0.3377872 0.55448718
## 485  0.550877193  0.440620783 0.4039581 0.9359165 0.3398746 0.55564452
## 1347 0.550000000  0.439743590 0.4034884 0.9358209 0.3393093 0.55520000
## 215  0.549122807  0.438866397 0.4030197 0.9357250 0.3387447 0.55475620
## 1217 0.548245614  0.437989204 0.4025522 0.9356287 0.3381809 0.55431310
## 52   0.547368421  0.437112011 0.4020857 0.9355322 0.3376180 0.55387071
## 586  0.547368421  0.439676113 0.4027778 0.9369369 0.3397147 0.55502392
## 265  0.546491228  0.438798920 0.4023121 0.9368421 0.3391542 0.55458167
## 1510 0.546491228  0.441363023 0.4030023 0.9382530 0.3412553 0.55573248
## 799  0.545614035  0.440485830 0.4025375 0.9381599 0.3406974 0.55529037
## 386  0.545614035  0.443049933 0.4032258 0.9395770 0.3428028 0.55643879
## 1181 0.544736842  0.442172740 0.4027618 0.9394856 0.3422474 0.55599682
## 1094 0.544736842  0.444736842 0.4034483 0.9409091 0.3443574 0.55714286
## 1175 0.543859649  0.443859649 0.4029851 0.9408194 0.3438045 0.55670103
## 757  0.542982456  0.442982456 0.4025229 0.9407295 0.3432524 0.55625990
## 6    0.542105263  0.442105263 0.4020619 0.9406393 0.3427011 0.55581948
## 1446 0.541228070  0.441228070 0.4016018 0.9405488 0.3421506 0.55537975
## 897  0.541228070  0.443792173 0.4022857 0.9419847 0.3442704 0.55652174
## 941  0.540350877  0.442914980 0.4018265 0.9418960 0.3437225 0.55608215
## 598  0.539473684  0.442037787 0.4013683 0.9418070 0.3431753 0.55564325
## 761  0.538596491  0.441160594 0.4009112 0.9417178 0.3426290 0.55520505
## 239  0.537719298  0.440283401 0.4004551 0.9416283 0.3420833 0.55476753
## 1440 0.536842105  0.439406208 0.4000000 0.9415385 0.3415385 0.55433071
## 976  0.535964912  0.438529015 0.3995460 0.9414484 0.3409944 0.55389457
## 796  0.535087719  0.437651822 0.3990930 0.9413580 0.3404510 0.55345912
## 613  0.534210526  0.436774629 0.3986410 0.9412674 0.3399084 0.55302435
## 693  0.533333333  0.435897436 0.3981900 0.9411765 0.3393665 0.55259027
## 1106 0.532456140  0.435020243 0.3977401 0.9410853 0.3388254 0.55215686
## 1066 0.531578947  0.434143050 0.3972912 0.9409938 0.3382850 0.55172414
## 963  0.530701754  0.433265857 0.3968433 0.9409020 0.3377453 0.55129209
## 42   0.530701754  0.435829960 0.3975225 0.9423676 0.3398901 0.55242567
## 401  0.530701754  0.438394062 0.3982002 0.9438378 0.3420380 0.55355747
## 1178 0.529824561  0.437516869 0.3977528 0.9437500 0.3415028 0.55312500
## 847  0.528947368  0.436639676 0.3973064 0.9436620 0.3409684 0.55269321
## 1101 0.528070175  0.435762483 0.3968610 0.9435737 0.3404347 0.55226209
## 1104 0.527192982  0.434885290 0.3964166 0.9434851 0.3399017 0.55183164
## 525  0.526315789  0.434008097 0.3959732 0.9433962 0.3393694 0.55140187
## 1319 0.525438596  0.433130904 0.3955307 0.9433071 0.3388378 0.55097276
## 994  0.524561404  0.432253711 0.3950893 0.9432177 0.3383070 0.55054432
## 651  0.523684211  0.431376518 0.3946488 0.9431280 0.3377768 0.55011655
## 155  0.522807018  0.430499325 0.3942094 0.9430380 0.3372473 0.54968944
## 1206 0.521929825  0.429622132 0.3937709 0.9429477 0.3367186 0.54926299
## 142  0.521052632  0.428744939 0.3933333 0.9428571 0.3361905 0.54883721
## 1100 0.520175439  0.427867746 0.3928968 0.9427663 0.3356631 0.54841208
## 62   0.519298246  0.426990553 0.3924612 0.9426752 0.3351364 0.54798762
## 549  0.518421053  0.426113360 0.3920266 0.9425837 0.3346103 0.54756381
## 328  0.517543860  0.425236167 0.3915929 0.9424920 0.3340849 0.54714065
## 509  0.516666667  0.424358974 0.3911602 0.9424000 0.3335602 0.54671815
## 492  0.515789474  0.423481781 0.3907285 0.9423077 0.3330362 0.54629630
## 1119 0.514912281  0.422604588 0.3902977 0.9422151 0.3325128 0.54587510
## 1    0.514035088  0.421727395 0.3898678 0.9421222 0.3319900 0.54545455
## 1469 0.513157895  0.420850202 0.3894389 0.9420290 0.3314679 0.54503464
## 218  0.512280702  0.419973009 0.3890110 0.9419355 0.3309465 0.54461538
## 984  0.511403509  0.419095816 0.3885840 0.9418417 0.3304257 0.54419677
## 496  0.510526316  0.418218623 0.3881579 0.9417476 0.3299055 0.54377880
## 217  0.510526316  0.420782726 0.3888280 0.9432739 0.3321019 0.54489639
## 1430 0.509649123  0.419905533 0.3884026 0.9431818 0.3315844 0.54447853
## 352  0.509649123  0.422469636 0.3890710 0.9447154 0.3337865 0.54559387
## 456  0.508771930  0.421592443 0.3886463 0.9446254 0.3332717 0.54517611
## 64   0.507894737  0.420715250 0.3882225 0.9445351 0.3327575 0.54475899
## 596  0.507017544  0.419838057 0.3877996 0.9444444 0.3322440 0.54434251
## 1191 0.506140351  0.418960864 0.3873776 0.9443535 0.3317311 0.54392666
## 1242 0.505263158  0.418083671 0.3869565 0.9442623 0.3312188 0.54351145
## 1214 0.504385965  0.417206478 0.3865364 0.9441708 0.3307071 0.54309687
## 604  0.503508772  0.416329285 0.3861171 0.9440789 0.3301961 0.54268293
## 21   0.502631579  0.415452092 0.3856988 0.9439868 0.3296856 0.54226961
## 1522 0.501754386  0.414574899 0.3852814 0.9438944 0.3291758 0.54185693
## 323  0.500877193  0.413697706 0.3848649 0.9438017 0.3286665 0.54144487
## 1050 0.500000000  0.412820513 0.3844492 0.9437086 0.3281579 0.54103343
## 131  0.500000000  0.415384615 0.3851133 0.9452736 0.3303869 0.54214123
## 98   0.500000000  0.417948718 0.3857759 0.9468439 0.3326197 0.54324734
## 1423 0.499122807  0.417071525 0.3853606 0.9467554 0.3321160 0.54283548
## 17   0.499122807  0.419635628 0.3860215 0.9483333 0.3343548 0.54393939
## 1511 0.499122807  0.422199730 0.3866810 0.9499165 0.3365975 0.54504164
## 551  0.498245614  0.421322537 0.3862661 0.9498328 0.3360989 0.54462935
## 247  0.498245614  0.423886640 0.3869239 0.9514238 0.3383477 0.54572940
## 937  0.497368421  0.423009447 0.3865096 0.9513423 0.3378519 0.54531722
## 213  0.496491228  0.422132254 0.3860963 0.9512605 0.3373568 0.54490566
## 204  0.495614035  0.421255061 0.3856838 0.9511785 0.3368622 0.54449472
## 980  0.494736842  0.420377868 0.3852721 0.9510961 0.3363683 0.54408440
## 915  0.493859649  0.419500675 0.3848614 0.9510135 0.3358749 0.54367470
## 906  0.492982456  0.418623482 0.3844515 0.9509306 0.3353822 0.54326561
## 910  0.492105263  0.417746289 0.3840426 0.9508475 0.3348900 0.54285714
## 709  0.491228070  0.416869096 0.3836344 0.9507640 0.3343984 0.54244929
## 109  0.490350877  0.415991903 0.3832272 0.9506803 0.3339074 0.54204204
## 325  0.489473684  0.415114710 0.3828208 0.9505963 0.3334170 0.54163541
## 957  0.488596491  0.414237517 0.3824153 0.9505119 0.3329272 0.54122939
## 830  0.487719298  0.413360324 0.3820106 0.9504274 0.3324379 0.54082397
## 259  0.487719298  0.415924426 0.3826638 0.9520548 0.3347186 0.54191617
## 983  0.486842105  0.415047233 0.3822598 0.9519726 0.3342323 0.54151085
## 1259 0.485964912  0.414170040 0.3818565 0.9518900 0.3337466 0.54110613
## 1143 0.485087719  0.413292848 0.3814542 0.9518072 0.3332614 0.54070202
## 44   0.485087719  0.415856950 0.3821053 0.9534483 0.3355535 0.54179104
## 206  0.484210526  0.414979757 0.3817035 0.9533679 0.3350713 0.54138702
## 1072 0.483333333  0.414102564 0.3813025 0.9532872 0.3345897 0.54098361
## 1529 0.482456140  0.413225371 0.3809024 0.9532062 0.3341087 0.54058079
## 850  0.481578947  0.412348178 0.3805031 0.9531250 0.3336281 0.54017857
## 924  0.480701754  0.411470985 0.3801047 0.9530435 0.3331482 0.53977695
## 207  0.479824561  0.410593792 0.3797071 0.9529617 0.3326688 0.53937593
## 1463 0.478947368  0.409716599 0.3793103 0.9528796 0.3321899 0.53897550
## 91   0.478947368  0.412280702 0.3799582 0.9545455 0.3345037 0.54005935
## 702  0.478070175  0.411403509 0.3795620 0.9544658 0.3340279 0.53965901
## 252  0.478070175  0.413967611 0.3802083 0.9561404 0.3363487 0.54074074
## 1415 0.478070175  0.416531714 0.3808533 0.9578207 0.3386740 0.54182087
## 1209 0.477192982  0.415654521 0.3804574 0.9577465 0.3382039 0.54142012
## 566  0.476315789  0.414777328 0.3800623 0.9576720 0.3377343 0.54101996
## 519  0.475438596  0.413900135 0.3796680 0.9575972 0.3372652 0.54062038
## 1382 0.474561404  0.413022942 0.3792746 0.9575221 0.3367967 0.54022140
## 101  0.473684211  0.412145749 0.3788820 0.9574468 0.3363288 0.53982301
## 1399 0.472807018  0.411268556 0.3784902 0.9573712 0.3358614 0.53942520
## 1516 0.471929825  0.410391363 0.3780992 0.9572954 0.3353945 0.53902798
## 30   0.471052632  0.409514170 0.3777090 0.9572193 0.3349282 0.53863135
## 520  0.470175439  0.408636977 0.3773196 0.9571429 0.3344624 0.53823529
## 1503 0.470175439  0.411201080 0.3779609 0.9588551 0.3368160 0.53930933
## 111  0.469298246  0.410323887 0.3775720 0.9587814 0.3363534 0.53891336
## 1328 0.468421053  0.409446694 0.3771840 0.9587074 0.3358913 0.53851798
## 779  0.467543860  0.408569501 0.3767967 0.9586331 0.3354298 0.53812317
## 1334 0.466666667  0.407692308 0.3764103 0.9585586 0.3349688 0.53772894
## 597  0.465789474  0.406815115 0.3760246 0.9584838 0.3345083 0.53733529
## 364  0.464912281  0.405937922 0.3756397 0.9584087 0.3340484 0.53694221
## 524  0.464035088  0.405060729 0.3752556 0.9583333 0.3335890 0.53654971
## 416  0.463157895  0.404183536 0.3748723 0.9582577 0.3331300 0.53615778
## 31   0.462280702  0.403306343 0.3744898 0.9581818 0.3326716 0.53576642
## 494  0.461403509  0.402429150 0.3741081 0.9581056 0.3322137 0.53537564
## 1099 0.460526316  0.401551957 0.3737271 0.9580292 0.3317563 0.53498542
## 887  0.460526316  0.404116059 0.3743642 0.9597806 0.3341448 0.53605244
## 365  0.459649123  0.403238866 0.3739837 0.9597070 0.3336907 0.53566230
## 806  0.458771930  0.402361673 0.3736041 0.9596330 0.3332371 0.53527273
## 822  0.457894737  0.401484480 0.3732252 0.9595588 0.3327840 0.53488372
## 889  0.457894737  0.404048583 0.3738602 0.9613260 0.3351861 0.53594771
## 1163 0.457017544  0.403171390 0.3734818 0.9612546 0.3347364 0.53555878
## 833  0.456140351  0.402294197 0.3731041 0.9611830 0.3342871 0.53517041
## 1372 0.455263158  0.401417004 0.3727273 0.9611111 0.3338384 0.53478261
## 220  0.454385965  0.400539811 0.3723512 0.9610390 0.3333901 0.53439537
## 1081 0.453508772  0.399662618 0.3719758 0.9609665 0.3329423 0.53400868
## 25   0.452631579  0.398785425 0.3716012 0.9608939 0.3324951 0.53362256
## 664  0.451754386  0.397908232 0.3712274 0.9608209 0.3320483 0.53323699
## 27   0.450877193  0.397031039 0.3708543 0.9607477 0.3316019 0.53285199
## 935  0.450000000  0.396153846 0.3704819 0.9606742 0.3311561 0.53246753
## 1292 0.449122807  0.395276653 0.3701103 0.9606004 0.3307107 0.53208363
## 707  0.448245614  0.394399460 0.3697395 0.9605263 0.3302658 0.53170029
## 1042 0.448245614  0.396963563 0.3703704 0.9623352 0.3327056 0.53275738
## 1080 0.447368421  0.396086370 0.3700000 0.9622642 0.3322642 0.53237410
## 1147 0.446491228  0.395209177 0.3696304 0.9621928 0.3318232 0.53199137
## 992  0.445614035  0.394331984 0.3692615 0.9621212 0.3313827 0.53160920
## 1132 0.444736842  0.393454791 0.3688933 0.9620493 0.3309427 0.53122757
## 825  0.443859649  0.392577598 0.3685259 0.9619772 0.3305031 0.53084648
## 828  0.442982456  0.391700405 0.3681592 0.9619048 0.3300640 0.53046595
## 1012 0.442105263  0.390823212 0.3677932 0.9618321 0.3296253 0.53008596
## 424  0.441228070  0.389946019 0.3674280 0.9617591 0.3291871 0.52970651
## 561  0.440350877  0.389068826 0.3670635 0.9616858 0.3287493 0.52932761
## 1048 0.439473684  0.388191633 0.3666997 0.9616123 0.3283120 0.52894925
## 1276 0.438596491  0.387314440 0.3663366 0.9615385 0.3278751 0.52857143
## 665  0.437719298  0.386437247 0.3659743 0.9614644 0.3274386 0.52819415
## 974  0.436842105  0.385560054 0.3656126 0.9613900 0.3270026 0.52781740
## 250  0.436842105  0.388124157 0.3662389 0.9632495 0.3294884 0.52886671
## 1434 0.435964912  0.387246964 0.3658777 0.9631783 0.3290560 0.52849003
## 226  0.435087719  0.386369771 0.3655172 0.9631068 0.3286240 0.52811388
## 1077 0.434210526  0.385492578 0.3651575 0.9630350 0.3281925 0.52773826
## 661  0.433333333  0.384615385 0.3647984 0.9629630 0.3277614 0.52736318
## 437  0.433333333  0.387179487 0.3654224 0.9648438 0.3302661 0.52840909
## 967  0.432456140  0.386302294 0.3650638 0.9647750 0.3298387 0.52803407
## 730  0.431578947  0.385425101 0.3647059 0.9647059 0.3294118 0.52765957
## 196  0.431578947  0.387989204 0.3653281 0.9666012 0.3319293 0.52870305
## 1348 0.430701754  0.387112011 0.3649706 0.9665354 0.3315061 0.52832861
## 660  0.429824561  0.386234818 0.3646139 0.9664694 0.3310833 0.52795471
## 798  0.428947368  0.385357625 0.3642578 0.9664032 0.3306610 0.52758133
## 691  0.428070175  0.384480432 0.3639024 0.9663366 0.3302391 0.52720848
## 814  0.427192982  0.383603239 0.3635478 0.9662698 0.3298176 0.52683616
## 1172 0.426315789  0.382726046 0.3631938 0.9662028 0.3293966 0.52646436
## 1165 0.425438596  0.381848853 0.3628405 0.9661355 0.3289759 0.52609309
## 1272 0.424561404  0.380971660 0.3624879 0.9660679 0.3285557 0.52572234
## 812  0.423684211  0.380094467 0.3621359 0.9660000 0.3281359 0.52535211
## 1274 0.422807018  0.379217274 0.3617847 0.9659319 0.3277165 0.52498241
## 143  0.422807018  0.381781377 0.3624031 0.9678715 0.3302746 0.52601969
## 824  0.421929825  0.380904184 0.3620523 0.9678068 0.3298591 0.52565004
## 663  0.421052632  0.380026991 0.3617021 0.9677419 0.3294441 0.52528090
## 1270 0.420175439  0.379149798 0.3613527 0.9676768 0.3290294 0.52491228
## 881  0.419298246  0.378272605 0.3610039 0.9676113 0.3286152 0.52454418
## 1351 0.418421053  0.377395412 0.3606557 0.9675456 0.3282014 0.52417659
## 197  0.418421053  0.379959514 0.3612717 0.9695122 0.3307839 0.52521008
## 1271 0.417543860  0.379082321 0.3609240 0.9694501 0.3303741 0.52484255
## 829  0.416666667  0.378205128 0.3605769 0.9693878 0.3299647 0.52447552
## 626  0.415789474  0.377327935 0.3602305 0.9693252 0.3295557 0.52410901
## 1332 0.414912281  0.376450742 0.3598848 0.9692623 0.3291471 0.52374302
## 275  0.414035088  0.375573549 0.3595398 0.9691992 0.3287390 0.52337753
## 1169 0.413157895  0.374696356 0.3591954 0.9691358 0.3283312 0.52301255
## 1171 0.412280702  0.373819163 0.3588517 0.9690722 0.3279238 0.52264808
## 1349 0.411403509  0.372941970 0.3585086 0.9690083 0.3275169 0.52228412
## 826  0.410526316  0.372064777 0.3581662 0.9689441 0.3271103 0.52192067
## 1142 0.409649123  0.371187584 0.3578244 0.9688797 0.3267041 0.52155772
## 1170 0.408771930  0.370310391 0.3574833 0.9688150 0.3262983 0.52119527
## 1173 0.407894737  0.369433198 0.3571429 0.9687500 0.3258929 0.52083333
## 1067 0.407017544  0.368556005 0.3568030 0.9686848 0.3254878 0.52047189
## 254  0.407017544  0.371120108 0.3574144 0.9707113 0.3281257 0.52149792
## 449  0.406140351  0.370242915 0.3570750 0.9706499 0.3277249 0.52113652
## 227  0.405263158  0.369365722 0.3567362 0.9705882 0.3273245 0.52077562
## 225  0.404385965  0.368488529 0.3563981 0.9705263 0.3269244 0.52041522
## 655  0.403508772  0.367611336 0.3560606 0.9704641 0.3265247 0.52005533
## 47   0.402631579  0.366734143 0.3557237 0.9704017 0.3261254 0.51969592
## 827  0.401754386  0.365856950 0.3553875 0.9703390 0.3257265 0.51933702
## 335  0.400877193  0.364979757 0.3550519 0.9702760 0.3253279 0.51897861
## 1013 0.400000000  0.364102564 0.3547170 0.9702128 0.3249297 0.51862069
## 692  0.399122807  0.363225371 0.3543827 0.9701493 0.3245319 0.51826327
## 1168 0.398245614  0.362348178 0.3540490 0.9700855 0.3241344 0.51790634
## 933  0.397368421  0.361470985 0.3537159 0.9700214 0.3237373 0.51754990
## 557  0.396491228  0.360593792 0.3533835 0.9699571 0.3233405 0.51719395
## 1121 0.395614035  0.359716599 0.3530516 0.9698925 0.3229441 0.51683849
## 554  0.394736842  0.358839406 0.3527205 0.9698276 0.3225480 0.51648352
## 556  0.393859649  0.357962213 0.3523899 0.9697624 0.3221523 0.51612903
## 1369 0.392982456  0.357085020 0.3520599 0.9696970 0.3217569 0.51577503
## 619  0.392105263  0.356207827 0.3517306 0.9696312 0.3213618 0.51542152
## 880  0.391228070  0.355330634 0.3514019 0.9695652 0.3209671 0.51506849
## 1059 0.390350877  0.354453441 0.3510738 0.9694989 0.3205727 0.51471595
## 439  0.389473684  0.353576248 0.3507463 0.9694323 0.3201786 0.51436389
## 560  0.388596491  0.352699055 0.3504194 0.9693654 0.3197848 0.51401230
## 1466 0.387719298  0.351821862 0.3500931 0.9692982 0.3193914 0.51366120
## 559  0.386842105  0.350944669 0.3497674 0.9692308 0.3189982 0.51331058
## 1123 0.385964912  0.350067476 0.3494424 0.9691630 0.3186054 0.51296044
## 971  0.385087719  0.349190283 0.3491179 0.9690949 0.3182128 0.51261077
## 662  0.384210526  0.348313090 0.3487941 0.9690265 0.3178206 0.51226158
## 893  0.384210526  0.350877193 0.3493976 0.9711752 0.3205728 0.51327434
## 1125 0.383333333  0.350000000 0.3490741 0.9711111 0.3201852 0.51292517
## 303  0.383333333  0.352564103 0.3496762 0.9732739 0.3229502 0.51393610
## 682  0.382456140  0.351686910 0.3493530 0.9732143 0.3225673 0.51358696
## 1496 0.381578947  0.350809717 0.3490305 0.9731544 0.3221848 0.51323829
## 1138 0.380701754  0.349932524 0.3487085 0.9730942 0.3218027 0.51289009
## 908  0.379824561  0.349055331 0.3483871 0.9730337 0.3214208 0.51254237
## 831  0.378947368  0.348178138 0.3480663 0.9729730 0.3210393 0.51219512
## 427  0.378070175  0.347300945 0.3477461 0.9729120 0.3206581 0.51184834
## 859  0.377192982  0.346423752 0.3474265 0.9728507 0.3202771 0.51150203
## 324  0.376315789  0.345546559 0.3471074 0.9727891 0.3198966 0.51115619
## 41   0.375438596  0.344669366 0.3467890 0.9727273 0.3195163 0.51081081
## 873  0.374561404  0.343792173 0.3464711 0.9726651 0.3191363 0.51046590
## 681  0.373684211  0.342914980 0.3461538 0.9726027 0.3187566 0.51012146
## 666  0.372807018  0.342037787 0.3458371 0.9725400 0.3183772 0.50977748
## 1358 0.371929825  0.341160594 0.3455210 0.9724771 0.3179981 0.50943396
## 721  0.371052632  0.340283401 0.3452055 0.9724138 0.3176193 0.50909091
## 553  0.370175439  0.339406208 0.3448905 0.9723502 0.3172407 0.50874832
## 273  0.369298246  0.338529015 0.3445761 0.9722864 0.3168625 0.50840619
## 1083 0.368421053  0.337651822 0.3442623 0.9722222 0.3164845 0.50806452
## 412  0.367543860  0.336774629 0.3439490 0.9721578 0.3161068 0.50772330
## 722  0.366666667  0.335897436 0.3436364 0.9720930 0.3157294 0.50738255
## 3    0.365789474  0.335020243 0.3433243 0.9720280 0.3153522 0.50704225
## 1014 0.364912281  0.334143050 0.3430127 0.9719626 0.3149753 0.50670241
## 777  0.364035088  0.333265857 0.3427017 0.9718970 0.3145987 0.50636303
## 454  0.363157895  0.332388664 0.3423913 0.9718310 0.3142223 0.50602410
## 720  0.362280702  0.331511471 0.3420814 0.9717647 0.3138462 0.50568562
## 926  0.361403509  0.330634278 0.3417722 0.9716981 0.3134703 0.50534759
## 1047 0.360526316  0.329757085 0.3414634 0.9716312 0.3130946 0.50501002
## 899  0.360526316  0.332321188 0.3420578 0.9739336 0.3159914 0.50600801
## 327  0.359649123  0.331443995 0.3417493 0.9738717 0.3156211 0.50567045
## 164  0.358771930  0.330566802 0.3414414 0.9738095 0.3152510 0.50533333
## 1401 0.357894737  0.329689609 0.3411341 0.9737470 0.3148811 0.50499667
## 958  0.357017544  0.328812416 0.3408273 0.9736842 0.3145115 0.50466045
## 1345 0.356140351  0.327935223 0.3405211 0.9736211 0.3141422 0.50432468
## 896  0.356140351  0.330499325 0.3411131 0.9759615 0.3170746 0.50531915
## 1329 0.355263158  0.329622132 0.3408072 0.9759036 0.3167108 0.50498339
## 809  0.354385965  0.328744939 0.3405018 0.9758454 0.3163472 0.50464807
## 627  0.353508772  0.327867746 0.3401970 0.9757869 0.3159839 0.50431321
## 1323 0.352631579  0.326990553 0.3398927 0.9757282 0.3156208 0.50397878
## 973  0.351754386  0.326113360 0.3395889 0.9756691 0.3152580 0.50364480
## 581  0.350877193  0.325236167 0.3392857 0.9756098 0.3148955 0.50331126
## 1322 0.350000000  0.324358974 0.3389831 0.9755501 0.3145332 0.50297816
## 883  0.349122807  0.323481781 0.3386809 0.9754902 0.3141711 0.50264550
## 970  0.348245614  0.322604588 0.3383793 0.9754300 0.3138093 0.50231328
## 975  0.347368421  0.321727395 0.3380783 0.9753695 0.3134477 0.50198151
## 930  0.346491228  0.320850202 0.3377778 0.9753086 0.3130864 0.50165017
## 647  0.345614035  0.319973009 0.3374778 0.9752475 0.3127253 0.50131926
## 1514 0.344736842  0.319095816 0.3371783 0.9751861 0.3123645 0.50098879
## 1400 0.343859649  0.318218623 0.3368794 0.9751244 0.3120038 0.50065876
## 570  0.342982456  0.317341430 0.3365810 0.9750623 0.3116434 0.50032916
## 934  0.342105263  0.316464238 0.3362832 0.9750000 0.3112832 0.50000000
## 765  0.341228070  0.315587045 0.3359859 0.9749373 0.3109232 0.49967127
## 1219 0.340350877  0.314709852 0.3356890 0.9748744 0.3105634 0.49934297
## 452  0.339473684  0.313832659 0.3353928 0.9748111 0.3102038 0.49901510
## 754  0.338596491  0.312955466 0.3350970 0.9747475 0.3098445 0.49868766
## 1391 0.337719298  0.312078273 0.3348018 0.9746835 0.3094853 0.49836066
## 1366 0.336842105  0.311201080 0.3345070 0.9746193 0.3091263 0.49803408
## 35   0.335964912  0.310323887 0.3342128 0.9745547 0.3087675 0.49770792
## 1346 0.335087719  0.309446694 0.3339192 0.9744898 0.3084090 0.49738220
## 610  0.334210526  0.308569501 0.3336260 0.9744246 0.3080505 0.49705690
## 418  0.333333333  0.307692308 0.3333333 0.9743590 0.3076923 0.49673203
## 1061 0.332456140  0.306815115 0.3330412 0.9742931 0.3073343 0.49640758
## 1247 0.331578947  0.305937922 0.3327496 0.9742268 0.3069764 0.49608355
## 838  0.330701754  0.305060729 0.3324584 0.9741602 0.3066186 0.49575995
## 972  0.329824561  0.304183536 0.3321678 0.9740933 0.3062611 0.49543677
## 450  0.328947368  0.303306343 0.3318777 0.9740260 0.3059037 0.49511401
## 526  0.328070175  0.302429150 0.3315881 0.9739583 0.3055465 0.49479167
## 755  0.327192982  0.301551957 0.3312990 0.9738903 0.3051894 0.49446975
## 1437 0.326315789  0.300674764 0.3310105 0.9738220 0.3048324 0.49414824
## 1129 0.325438596  0.299797571 0.3307224 0.9737533 0.3044756 0.49382716
## 505  0.324561404  0.298920378 0.3304348 0.9736842 0.3041190 0.49350649
## 477  0.324561404  0.301484480 0.3310165 0.9762533 0.3072698 0.49448410
## 1152 0.323684211  0.300607287 0.3307292 0.9761905 0.3069196 0.49416342
## 37   0.322807018  0.299730094 0.3304423 0.9761273 0.3065696 0.49384316
## 1010 0.321929825  0.298852901 0.3301560 0.9760638 0.3062198 0.49352332
## 463  0.321052632  0.297975709 0.3298701 0.9760000 0.3058701 0.49320388
## 932  0.320175439  0.297098516 0.3295848 0.9759358 0.3055206 0.49288486
## 901  0.319298246  0.296221323 0.3292999 0.9758713 0.3051712 0.49256626
## 489  0.318421053  0.295344130 0.3290155 0.9758065 0.3048220 0.49224806
## 919  0.317543860  0.294466937 0.3287317 0.9757412 0.3044729 0.49193028
## 231  0.317543860  0.297031039 0.3293103 0.9783784 0.3076887 0.49290323
## 1135 0.316666667  0.296153846 0.3290267 0.9783198 0.3073465 0.49258543
## 1182 0.315789474  0.295276653 0.3287435 0.9782609 0.3070044 0.49226804
## 579  0.314912281  0.294399460 0.3284609 0.9782016 0.3066625 0.49195106
## 1131 0.314035088  0.293522267 0.3281787 0.9781421 0.3063208 0.49163449
## 34   0.313157895  0.292645074 0.3278970 0.9780822 0.3059792 0.49131833
## 625  0.312280702  0.291767881 0.3276158 0.9780220 0.3056378 0.49100257
## 1286 0.311403509  0.290890688 0.3273350 0.9779614 0.3052965 0.49068722
## 1356 0.310526316  0.290013495 0.3270548 0.9779006 0.3049553 0.49037227
## 950  0.309649123  0.289136302 0.3267750 0.9778393 0.3046144 0.49005773
## 884  0.308771930  0.288259109 0.3264957 0.9777778 0.3042735 0.48974359
## 1114 0.307894737  0.287381916 0.3262169 0.9777159 0.3039328 0.48942985
## 1111 0.307017544  0.286504723 0.3259386 0.9776536 0.3035922 0.48911652
## 1287 0.306140351  0.285627530 0.3256607 0.9775910 0.3032517 0.48880358
## 1363 0.305263158  0.284750337 0.3253833 0.9775281 0.3029114 0.48849105
## 718  0.304385965  0.283873144 0.3251064 0.9774648 0.3025712 0.48817891
## 1118 0.303508772  0.282995951 0.3248299 0.9774011 0.3022311 0.48786718
## 1294 0.302631579  0.282118758 0.3245540 0.9773371 0.3018911 0.48755584
## 1499 0.302631579  0.284682861 0.3251273 0.9801136 0.3052410 0.48852041
## 1512 0.301754386  0.283805668 0.3248516 0.9800570 0.3049085 0.48820905
## 1296 0.300877193  0.282928475 0.3245763 0.9800000 0.3045763 0.48789809
## 426  0.300000000  0.282051282 0.3243014 0.9799427 0.3042441 0.48758752
## 624  0.299122807  0.281174089 0.3240271 0.9798851 0.3039121 0.48727735
## 821  0.298245614  0.280296896 0.3237532 0.9798271 0.3035803 0.48696758
## 1008 0.297368421  0.279419703 0.3234797 0.9797688 0.3032485 0.48665820
## 1149 0.296491228  0.278542510 0.3232068 0.9797101 0.3029169 0.48634921
## 753  0.295614035  0.277665317 0.3229342 0.9796512 0.3025854 0.48604061
## 1454 0.294736842  0.276788124 0.3226622 0.9795918 0.3022540 0.48573240
## 1273 0.293859649  0.275910931 0.3223906 0.9795322 0.3019227 0.48542459
## 467  0.292982456  0.275033738 0.3221194 0.9794721 0.3015916 0.48511716
## 573  0.292105263  0.274156545 0.3218487 0.9794118 0.3012605 0.48481013
## 110  0.291228070  0.273279352 0.3215785 0.9793510 0.3009295 0.48450348
## 1487 0.290350877  0.272402159 0.3213087 0.9792899 0.3005987 0.48419722
## 1435 0.289473684  0.271524966 0.3210394 0.9792285 0.3002679 0.48389135
## 1436 0.288596491  0.270647773 0.3207705 0.9791667 0.2999372 0.48358586
## 322  0.287719298  0.269770580 0.3205021 0.9791045 0.2996066 0.48328076
## 1433 0.286842105  0.268893387 0.3202341 0.9790419 0.2992760 0.48297604
## 1515 0.285964912  0.268016194 0.3199666 0.9789790 0.2989456 0.48267171
## 778  0.285087719  0.267139001 0.3196995 0.9789157 0.2986152 0.48236776
## 537  0.284210526  0.266261808 0.3194329 0.9788520 0.2982848 0.48206419
## 1249 0.283333333  0.265384615 0.3191667 0.9787879 0.2979545 0.48176101
## 719  0.282456140  0.264507422 0.3189009 0.9787234 0.2976243 0.48145820
## 768  0.281578947  0.263630229 0.3186356 0.9786585 0.2972941 0.48115578
## 1376 0.280701754  0.262753036 0.3183707 0.9785933 0.2969640 0.48085374
## 769  0.279824561  0.261875843 0.3181063 0.9785276 0.2966339 0.48055207
## 451  0.278947368  0.260998650 0.3178423 0.9784615 0.2963039 0.48025078
## 1476 0.278070175  0.260121457 0.3175788 0.9783951 0.2959738 0.47994987
## 471  0.277192982  0.259244265 0.3173157 0.9783282 0.2956438 0.47964934
## 1126 0.276315789  0.258367072 0.3170530 0.9782609 0.2953138 0.47934919
## 1438 0.275438596  0.257489879 0.3167907 0.9781931 0.2949839 0.47904941
## 1184 0.274561404  0.256612686 0.3165289 0.9781250 0.2946539 0.47875000
## 987  0.273684211  0.255735493 0.3162675 0.9780564 0.2943240 0.47845097
## 1381 0.272807018  0.254858300 0.3160066 0.9779874 0.2939940 0.47815231
## 506  0.271929825  0.253981107 0.3157461 0.9779180 0.2936641 0.47785402
## 1448 0.271052632  0.253103914 0.3154860 0.9778481 0.2933341 0.47755611
## 628  0.270175439  0.252226721 0.3152263 0.9777778 0.2930041 0.47725857
## 1137 0.269298246  0.251349528 0.3149671 0.9777070 0.2926741 0.47696139
## 53   0.268421053  0.250472335 0.3147083 0.9776358 0.2923441 0.47666459
## 843  0.267543860  0.249595142 0.3144499 0.9775641 0.2920140 0.47636816
## 600  0.266666667  0.248717949 0.3141920 0.9774920 0.2916839 0.47607209
## 1473 0.265789474  0.247840756 0.3139344 0.9774194 0.2913538 0.47577640
## 1062 0.264912281  0.246963563 0.3136773 0.9773463 0.2910236 0.47548107
## 1325 0.264035088  0.246086370 0.3134206 0.9772727 0.2906933 0.47518610
## 1161 0.263157895  0.245209177 0.3131643 0.9771987 0.2903630 0.47489151
## 438  0.262280702  0.244331984 0.3129085 0.9771242 0.2900327 0.47459727
## 1489 0.261403509  0.243454791 0.3126531 0.9770492 0.2897022 0.47430341
## 1513 0.260526316  0.242577598 0.3123980 0.9769737 0.2893717 0.47400990
## 470  0.259649123  0.241700405 0.3121434 0.9768977 0.2890411 0.47371676
## 639  0.258771930  0.240823212 0.3118893 0.9768212 0.2887104 0.47342398
## 417  0.257894737  0.239946019 0.3116355 0.9767442 0.2883797 0.47313156
## 648  0.257017544  0.239068826 0.3113821 0.9766667 0.2880488 0.47283951
## 464  0.256140351  0.238191633 0.3111292 0.9765886 0.2877178 0.47254781
## 1380 0.255263158  0.237314440 0.3108766 0.9765101 0.2873867 0.47225647
## 415  0.254385965  0.236437247 0.3106245 0.9764310 0.2870555 0.47196550
## 414  0.253508772  0.235560054 0.3103728 0.9763514 0.2867241 0.47167488
## 733  0.252631579  0.234682861 0.3101215 0.9762712 0.2863926 0.47138462
## 684  0.251754386  0.233805668 0.3098706 0.9761905 0.2860610 0.47109471
## 1065 0.250877193  0.232928475 0.3096200 0.9761092 0.2857293 0.47080516
## 420  0.250000000  0.232051282 0.3093700 0.9760274 0.2853973 0.47051597
## 230  0.249122807  0.231174089 0.3091203 0.9759450 0.2850653 0.47022713
## 442  0.248245614  0.230296896 0.3088710 0.9758621 0.2847330 0.46993865
## 745  0.247368421  0.229419703 0.3086221 0.9757785 0.2844006 0.46965052
## 1023 0.246491228  0.228542510 0.3083736 0.9756944 0.2840680 0.46936275
## 1258 0.245614035  0.227665317 0.3081255 0.9756098 0.2837353 0.46907532
## 678  0.244736842  0.226788124 0.3078778 0.9755245 0.2834023 0.46878825
## 290  0.244736842  0.229352227 0.3084337 0.9789474 0.2873811 0.46972477
## 949  0.243859649  0.228475034 0.3081862 0.9788732 0.2870594 0.46943765
## 541  0.242982456  0.227597841 0.3079391 0.9787986 0.2867376 0.46915089
## 539  0.242105263  0.226720648 0.3076923 0.9787234 0.2864157 0.46886447
## 612  0.241228070  0.225843455 0.3074460 0.9786477 0.2860936 0.46857840
## 863  0.240350877  0.224966262 0.3072000 0.9785714 0.2857714 0.46829268
## 877  0.239473684  0.224089069 0.3069544 0.9784946 0.2854491 0.46800731
## 1350 0.238596491  0.223211876 0.3067093 0.9784173 0.2851265 0.46772229
## 1455 0.237719298  0.222334683 0.3064645 0.9783394 0.2848038 0.46743761
## 1450 0.236842105  0.221457490 0.3062201 0.9782609 0.2844810 0.46715328
## 497  0.235964912  0.220580297 0.3059761 0.9781818 0.2841579 0.46686930
## 1422 0.235087719  0.219703104 0.3057325 0.9781022 0.2838347 0.46658566
## 1378 0.234210526  0.218825911 0.3054893 0.9780220 0.2835112 0.46630237
## 57   0.233333333  0.217948718 0.3052464 0.9779412 0.2831876 0.46601942
## 1021 0.232456140  0.217071525 0.3050040 0.9778598 0.2828638 0.46573681
## 1231 0.231578947  0.216194332 0.3047619 0.9777778 0.2825397 0.46545455
## 1457 0.230701754  0.215317139 0.3045202 0.9776952 0.2822154 0.46517262
## 622  0.229824561  0.214439946 0.3042789 0.9776119 0.2818909 0.46489104
## 13   0.228947368  0.213562753 0.3040380 0.9775281 0.2815661 0.46460980
## 805  0.228070175  0.212685560 0.3037975 0.9774436 0.2812411 0.46432890
## 640  0.227192982  0.211808367 0.3035573 0.9773585 0.2809158 0.46404834
## 474  0.226315789  0.210931174 0.3033175 0.9772727 0.2805903 0.46376812
## 1223 0.225438596  0.210053981 0.3030781 0.9771863 0.2802644 0.46348823
## 736  0.224561404  0.209176788 0.3028391 0.9770992 0.2799384 0.46320869
## 1060 0.223684211  0.208299595 0.3026005 0.9770115 0.2796120 0.46292948
## 646  0.222807018  0.207422402 0.3023622 0.9769231 0.2792853 0.46265060
## 1524 0.221929825  0.206545209 0.3021243 0.9768340 0.2789583 0.46237207
## 1256 0.221052632  0.205668016 0.3018868 0.9767442 0.2786310 0.46209386
## 955  0.220175439  0.204790823 0.3016496 0.9766537 0.2783033 0.46181600
## 867  0.219298246  0.203913630 0.3014129 0.9765625 0.2779754 0.46153846
## 677  0.218421053  0.203036437 0.3011765 0.9764706 0.2776471 0.46126126
## 523  0.217543860  0.202159244 0.3009404 0.9763780 0.2773184 0.46098439
## 1427 0.216666667  0.201282051 0.3007048 0.9762846 0.2769894 0.46070786
## 368  0.216666667  0.203846154 0.3012520 0.9801587 0.2814107 0.46163070
## 686  0.215789474  0.202968961 0.3010164 0.9800797 0.2810961 0.46135410
## 804  0.214912281  0.202091768 0.3007812 0.9800000 0.2807812 0.46107784
## 1221 0.214035088  0.201214575 0.3005464 0.9799197 0.2804661 0.46080192
## 136  0.214035088  0.203778677 0.3010920 0.9838710 0.2849630 0.46172249
## 428  0.214035088  0.206342780 0.3016368 0.9878543 0.2894910 0.46264196
## 864  0.213157895  0.205465587 0.3014019 0.9878049 0.2892067 0.46236559
## 1495 0.212280702  0.204588394 0.3011673 0.9877551 0.2889224 0.46208955
## 905  0.211403509  0.203711201 0.3009331 0.9877049 0.2886380 0.46181384
## 694  0.210526316  0.202834008 0.3006993 0.9876543 0.2883536 0.46153846
## 611  0.209649123  0.201956815 0.3004658 0.9876033 0.2880691 0.46126341
## 403  0.208771930  0.201079622 0.3002327 0.9875519 0.2877846 0.46098868
## 680  0.207894737  0.200202429 0.3000000 0.9875000 0.2875000 0.46071429
## 84   0.207017544  0.199325236 0.2997676 0.9874477 0.2872153 0.46044021
## 341  0.206140351  0.198448043 0.2995356 0.9873950 0.2869306 0.46016647
## 1026 0.205263158  0.197570850 0.2993039 0.9873418 0.2866457 0.45989305
## 706  0.204385965  0.196693657 0.2990726 0.9872881 0.2863608 0.45961995
## 543  0.203508772  0.195816464 0.2988417 0.9872340 0.2860757 0.45934718
## 904  0.202631579  0.194939271 0.2986111 0.9871795 0.2857906 0.45907473
## 1064 0.201754386  0.194062078 0.2983809 0.9871245 0.2855053 0.45880261
## 406  0.200877193  0.193184885 0.2981510 0.9870690 0.2852200 0.45853081
## 183  0.200000000  0.192307692 0.2979215 0.9870130 0.2849345 0.45825933
## 10   0.199122807  0.191430499 0.2976923 0.9869565 0.2846488 0.45798817
## 740  0.198245614  0.190553306 0.2974635 0.9868996 0.2843631 0.45771733
## 1227 0.197368421  0.189676113 0.2972350 0.9868421 0.2840771 0.45744681
## 1027 0.196491228  0.188798920 0.2970069 0.9867841 0.2837910 0.45717661
## 956  0.195614035  0.187921727 0.2967791 0.9867257 0.2835048 0.45690673
## 1426 0.194736842  0.187044534 0.2965517 0.9866667 0.2832184 0.45663717
## 1237 0.193859649  0.186167341 0.2963247 0.9866071 0.2829318 0.45636792
## 1365 0.192982456  0.185290148 0.2960979 0.9865471 0.2826450 0.45609900
## 43   0.192105263  0.184412955 0.2958716 0.9864865 0.2823580 0.45583039
## 1493 0.191228070  0.183535762 0.2956455 0.9864253 0.2820709 0.45556210
## 865  0.190350877  0.182658570 0.2954198 0.9863636 0.2817835 0.45529412
## 767  0.189473684  0.181781377 0.2951945 0.9863014 0.2814959 0.45502646
## 457  0.188596491  0.180904184 0.2949695 0.9862385 0.2812080 0.45475911
## 1497 0.187719298  0.180026991 0.2947449 0.9861751 0.2809200 0.45449207
## 469  0.186842105  0.179149798 0.2945205 0.9861111 0.2806317 0.45422535
## 1239 0.185964912  0.178272605 0.2942966 0.9860465 0.2803431 0.45395894
## 455  0.185087719  0.177395412 0.2940729 0.9859813 0.2800543 0.45369285
## 269  0.184210526  0.176518219 0.2938497 0.9859155 0.2797652 0.45342707
## 902  0.183333333  0.175641026 0.2936267 0.9858491 0.2794758 0.45316159
## 711  0.182456140  0.174763833 0.2934041 0.9857820 0.2791861 0.45289643
## 184  0.181578947  0.173886640 0.2931818 0.9857143 0.2788961 0.45263158
## 1364 0.180701754  0.173009447 0.2929599 0.9856459 0.2786058 0.45236704
## 422  0.179824561  0.172132254 0.2927383 0.9855769 0.2783152 0.45210280
## 423  0.178947368  0.171255061 0.2925170 0.9855072 0.2780243 0.45183888
## 332  0.178070175  0.170377868 0.2922961 0.9854369 0.2777330 0.45157526
## 1112 0.177192982  0.169500675 0.2920755 0.9853659 0.2774413 0.45131195
## 1043 0.176315789  0.168623482 0.2918552 0.9852941 0.2771493 0.45104895
## 1344 0.175438596  0.167746289 0.2916353 0.9852217 0.2768569 0.45078626
## 776  0.174561404  0.166869096 0.2914157 0.9851485 0.2765642 0.45052386
## 425  0.173684211  0.165991903 0.2911964 0.9850746 0.2762710 0.45026178
## 1233 0.172807018  0.165114710 0.2909774 0.9850000 0.2759774 0.45000000
## 1475 0.171929825  0.164237517 0.2907588 0.9849246 0.2756835 0.44973852
## 1232 0.171052632  0.163360324 0.2905405 0.9848485 0.2753890 0.44947735
## 500  0.170175439  0.162483131 0.2903226 0.9847716 0.2750942 0.44921648
## 1236 0.169298246  0.161605938 0.2901049 0.9846939 0.2747988 0.44895592
## 1235 0.168421053  0.160728745 0.2898876 0.9846154 0.2745030 0.44869565
## 133  0.167543860  0.159851552 0.2896707 0.9845361 0.2742067 0.44843569
## 1526 0.166666667  0.158974359 0.2894540 0.9844560 0.2739100 0.44817603
## 320  0.165789474  0.158097166 0.2892377 0.9843750 0.2736127 0.44791667
## 97   0.164912281  0.157219973 0.2890217 0.9842932 0.2733149 0.44765761
## 1477 0.164035088  0.156342780 0.2888060 0.9842105 0.2730165 0.44739884
## 1117 0.163157895  0.155465587 0.2885906 0.9841270 0.2727176 0.44714038
## 310  0.162280702  0.154588394 0.2883756 0.9840426 0.2724181 0.44688222
## 817  0.161403509  0.153711201 0.2881608 0.9839572 0.2721181 0.44662435
## 1472 0.160526316  0.152834008 0.2879464 0.9838710 0.2718174 0.44636678
## 1494 0.159649123  0.151956815 0.2877323 0.9837838 0.2715161 0.44610951
## 1082 0.158771930  0.151079622 0.2875186 0.9836957 0.2712142 0.44585253
## 607  0.157894737  0.150202429 0.2873051 0.9836066 0.2709117 0.44559585
## 1220 0.157017544  0.149325236 0.2870920 0.9835165 0.2706085 0.44533947
## 59   0.156140351  0.148448043 0.2868792 0.9834254 0.2703046 0.44508338
## 1255 0.155263158  0.147570850 0.2866667 0.9833333 0.2700000 0.44482759
## 1470 0.154385965  0.146693657 0.2864545 0.9832402 0.2696947 0.44457209
## 1527 0.153508772  0.145816464 0.2862426 0.9831461 0.2693887 0.44431688
## 866  0.152631579  0.144939271 0.2860310 0.9830508 0.2690819 0.44406196
## 900  0.151754386  0.144062078 0.2858198 0.9829545 0.2687743 0.44380734
## 468  0.150877193  0.143184885 0.2856089 0.9828571 0.2684660 0.44355301
## 1295 0.150000000  0.142307692 0.2853982 0.9827586 0.2681569 0.44329897
## 918  0.149122807  0.141430499 0.2851879 0.9826590 0.2678469 0.44304522
## 499  0.148245614  0.140553306 0.2849779 0.9825581 0.2675360 0.44279176
## 1471 0.147368421  0.139676113 0.2847682 0.9824561 0.2672244 0.44253859
## 1291 0.146491228  0.138798920 0.2845588 0.9823529 0.2669118 0.44228571
## 1297 0.145614035  0.137921727 0.2843497 0.9822485 0.2665983 0.44203312
## 339  0.144736842  0.137044534 0.2841410 0.9821429 0.2662838 0.44178082
## 724  0.143859649  0.136167341 0.2839325 0.9820359 0.2659684 0.44152881
## 1293 0.142982456  0.135290148 0.2837243 0.9819277 0.2656521 0.44127708
## 775  0.142105263  0.134412955 0.2835165 0.9818182 0.2653347 0.44102564
## 609  0.141228070  0.133535762 0.2833089 0.9817073 0.2650162 0.44077449
## 1022 0.140350877  0.132658570 0.2831017 0.9815951 0.2646968 0.44052362
## 735  0.139473684  0.131781377 0.2828947 0.9814815 0.2643762 0.44027304
## 652  0.138596491  0.130904184 0.2826881 0.9813665 0.2640546 0.44002274
## 990  0.137719298  0.130026991 0.2824818 0.9812500 0.2637318 0.43977273
## 1290 0.136842105  0.129149798 0.2822757 0.9811321 0.2634078 0.43952300
## 1207 0.135964912  0.128272605 0.2820700 0.9810127 0.2630826 0.43927355
## 466  0.135087719  0.127395412 0.2818645 0.9808917 0.2627562 0.43902439
## 705  0.134210526  0.126518219 0.2816594 0.9807692 0.2624286 0.43877551
## 659  0.133333333  0.125641026 0.2814545 0.9806452 0.2620997 0.43852691
## 1269 0.132456140  0.124763833 0.2812500 0.9805195 0.2617695 0.43827860
## 340  0.131578947  0.123886640 0.2810458 0.9803922 0.2614379 0.43803056
## 330  0.130701754  0.123009447 0.2808418 0.9802632 0.2611050 0.43778281
## 969  0.129824561  0.122132254 0.2806381 0.9801325 0.2607706 0.43753533
## 1377 0.128947368  0.121255061 0.2804348 0.9800000 0.2604348 0.43728814
## 1030 0.128947368  0.123819163 0.2809558 0.9865772 0.2675330 0.43817053
## 810  0.128070175  0.122941970 0.2807525 0.9864865 0.2672390 0.43792325
## 1116 0.127192982  0.122064777 0.2805495 0.9863946 0.2669441 0.43767625
## 988  0.126315789  0.121187584 0.2803468 0.9863014 0.2666482 0.43742954
## 358  0.125438596  0.120310391 0.2801444 0.9862069 0.2663513 0.43718310
## 948  0.124561404  0.119433198 0.2799423 0.9861111 0.2660534 0.43693694
## 1357 0.123684211  0.118556005 0.2797404 0.9860140 0.2657544 0.43669105
## 333  0.122807018  0.117678812 0.2795389 0.9859155 0.2654544 0.43644544
## 852  0.121929825  0.116801619 0.2793377 0.9858156 0.2651533 0.43620011
## 1218 0.121052632  0.115924426 0.2791367 0.9857143 0.2648510 0.43595506
## 1517 0.120175439  0.115047233 0.2789360 0.9856115 0.2645475 0.43571028
## 578  0.119298246  0.114170040 0.2787356 0.9855072 0.2642429 0.43546577
## 580  0.118421053  0.113292848 0.2785355 0.9854015 0.2639370 0.43522154
## 617  0.117543860  0.112415655 0.2783357 0.9852941 0.2636298 0.43497758
## 224  0.116666667  0.111538462 0.2781362 0.9851852 0.2633214 0.43473389
## 1185 0.115789474  0.110661269 0.2779370 0.9850746 0.2630116 0.43449048
## 1128 0.114912281  0.109784076 0.2777380 0.9849624 0.2627004 0.43424734
## 811  0.114035088  0.108906883 0.2775393 0.9848485 0.2623878 0.43400447
## 518  0.113157895  0.108029690 0.2773410 0.9847328 0.2620738 0.43376188
## 886  0.112280702  0.107152497 0.2771429 0.9846154 0.2617582 0.43351955
## 1488 0.111403509  0.106275304 0.2769450 0.9844961 0.2614412 0.43327750
## 542  0.110526316  0.105398111 0.2767475 0.9843750 0.2611225 0.43303571
## 1316 0.109649123  0.104520918 0.2765502 0.9842520 0.2608022 0.43279420
## 1079 0.108771930  0.103643725 0.2763533 0.9841270 0.2604803 0.43255295
## 846  0.107894737  0.102766532 0.2761566 0.9840000 0.2601566 0.43231198
## 51   0.107017544  0.101889339 0.2759602 0.9838710 0.2598311 0.43207127
## 1234 0.106140351  0.101012146 0.2757640 0.9837398 0.2595039 0.43183083
## 1421 0.105263158  0.100134953 0.2755682 0.9836066 0.2591747 0.43159066
## 1190 0.104385965  0.099257760 0.2753726 0.9834711 0.2588437 0.43135075
## 614  0.103508772  0.098380567 0.2751773 0.9833333 0.2585106 0.43111111
## 1076 0.102631579  0.097503374 0.2749823 0.9831933 0.2581756 0.43087174
## 991  0.101754386  0.096626181 0.2747875 0.9830508 0.2578384 0.43063263
## 1525 0.100877193  0.095748988 0.2745931 0.9829060 0.2574990 0.43039379
## 966  0.100000000  0.094871795 0.2743989 0.9827586 0.2571575 0.43015521
## 1183 0.099122807  0.093994602 0.2742049 0.9826087 0.2568136 0.42991690
## 1315 0.098245614  0.093117409 0.2740113 0.9824561 0.2564674 0.42967885
## 1226 0.097368421  0.092240216 0.2738179 0.9823009 0.2561188 0.42944106
## 737  0.096491228  0.091363023 0.2736248 0.9821429 0.2557677 0.42920354
## 606  0.095614035  0.090485830 0.2734320 0.9819820 0.2554140 0.42896628
## 703  0.094736842  0.089608637 0.2732394 0.9818182 0.2550576 0.42872928
## 106  0.093859649  0.088731444 0.2730471 0.9816514 0.2546985 0.42849255
## 156  0.092982456  0.087854251 0.2728551 0.9814815 0.2543366 0.42825607
## 848  0.092105263  0.086977058 0.2726634 0.9813084 0.2539718 0.42801986
## 752  0.091228070  0.086099865 0.2724719 0.9811321 0.2536040 0.42778390
## 571  0.090350877  0.085222672 0.2722807 0.9809524 0.2532331 0.42754821
## 650  0.089473684  0.084345479 0.2720898 0.9807692 0.2528590 0.42731278
## 338  0.088596491  0.083468286 0.2718991 0.9805825 0.2524816 0.42707760
## 704  0.087719298  0.082591093 0.2717087 0.9803922 0.2521008 0.42684268
## 1398 0.086842105  0.081713900 0.2715185 0.9801980 0.2517166 0.42660803
## 1240 0.085964912  0.080836707 0.2713287 0.9800000 0.2513287 0.42637363
## 1424 0.085087719  0.079959514 0.2711391 0.9797980 0.2509370 0.42613948
## 845  0.084210526  0.079082321 0.2709497 0.9795918 0.2505416 0.42590560
## 1151 0.083333333  0.078205128 0.2707606 0.9793814 0.2501421 0.42567197
## 1331 0.082456140  0.077327935 0.2705718 0.9791667 0.2497385 0.42543860
## 574  0.081578947  0.076450742 0.2703833 0.9789474 0.2493306 0.42520548
## 1313 0.080701754  0.075573549 0.2701950 0.9787234 0.2489184 0.42497262
## 842  0.079824561  0.074696356 0.2700070 0.9784946 0.2485016 0.42474001
## 1148 0.078947368  0.073819163 0.2698192 0.9782609 0.2480801 0.42450766
## 1461 0.078070175  0.072941970 0.2696317 0.9780220 0.2476537 0.42427556
## 193  0.078070175  0.075506073 0.2701389 0.9888889 0.2590278 0.42513661
## 577  0.077192982  0.074628880 0.2699514 0.9887640 0.2587155 0.42490442
## 170  0.077192982  0.077192982 0.2704577 1.0000000 0.2704577 0.42576419
## 854  0.076315789  0.076315789 0.2702703 1.0000000 0.2702703 0.42553191
## 1330 0.075438596  0.075438596 0.2700831 1.0000000 0.2700831 0.42529989
## 508  0.074561404  0.074561404 0.2698962 1.0000000 0.2698962 0.42506812
## 1397 0.073684211  0.073684211 0.2697095 1.0000000 0.2697095 0.42483660
## 1134 0.072807018  0.072807018 0.2695232 1.0000000 0.2695232 0.42460533
## 960  0.071929825  0.071929825 0.2693370 1.0000000 0.2693370 0.42437432
## 1404 0.071052632  0.071052632 0.2691511 1.0000000 0.2691511 0.42414356
## 913  0.070175439  0.070175439 0.2689655 1.0000000 0.2689655 0.42391304
## 337  0.069298246  0.069298246 0.2687802 1.0000000 0.2687802 0.42368278
## 878  0.068421053  0.068421053 0.2685950 1.0000000 0.2685950 0.42345277
## 1122 0.067543860  0.067543860 0.2684102 1.0000000 0.2684102 0.42322301
## 160  0.066666667  0.066666667 0.2682256 1.0000000 0.2682256 0.42299349
## 440  0.065789474  0.065789474 0.2680412 1.0000000 0.2680412 0.42276423
## 1396 0.064912281  0.064912281 0.2678571 1.0000000 0.2678571 0.42253521
## 276  0.064035088  0.064035088 0.2676733 1.0000000 0.2676733 0.42230644
## 1449 0.063157895  0.063157895 0.2674897 1.0000000 0.2674897 0.42207792
## 717  0.062280702  0.062280702 0.2673064 1.0000000 0.2673064 0.42184965
## 844  0.061403509  0.061403509 0.2671233 1.0000000 0.2671233 0.42162162
## 419  0.060526316  0.060526316 0.2669405 1.0000000 0.2669405 0.42139384
## 241  0.059649123  0.059649123 0.2667579 1.0000000 0.2667579 0.42116631
## 1458 0.058771930  0.058771930 0.2665755 1.0000000 0.2665755 0.42093902
## 1150 0.057894737  0.057894737 0.2663934 1.0000000 0.2663934 0.42071197
## 229  0.057017544  0.057017544 0.2662116 1.0000000 0.2662116 0.42048518
## 1360 0.056140351  0.056140351 0.2660300 1.0000000 0.2660300 0.42025862
## 507  0.055263158  0.055263158 0.2658487 1.0000000 0.2658487 0.42003231
## 100  0.054385965  0.054385965 0.2656676 1.0000000 0.2656676 0.41980624
## 1403 0.053508772  0.053508772 0.2654867 1.0000000 0.2654867 0.41958042
## 741  0.052631579  0.052631579 0.2653061 1.0000000 0.2653061 0.41935484
## 931  0.051754386  0.051754386 0.2651258 1.0000000 0.2651258 0.41912950
## 194  0.050877193  0.050877193 0.2649457 1.0000000 0.2649457 0.41890440
## 1052 0.050000000  0.050000000 0.2647658 1.0000000 0.2647658 0.41867955
## 734  0.049122807  0.049122807 0.2645862 1.0000000 0.2645862 0.41845494
## 1337 0.048245614  0.048245614 0.2644068 1.0000000 0.2644068 0.41823056
## 1154 0.047368421  0.047368421 0.2642276 1.0000000 0.2642276 0.41800643
## 448  0.046491228  0.046491228 0.2640487 1.0000000 0.2640487 0.41778254
## 1192 0.045614035  0.045614035 0.2638701 1.0000000 0.2638701 0.41755889
## 73   0.044736842  0.044736842 0.2636917 1.0000000 0.2636917 0.41733547
## 1367 0.043859649  0.043859649 0.2635135 1.0000000 0.2635135 0.41711230
## 882  0.042982456  0.042982456 0.2633356 1.0000000 0.2633356 0.41688936
## 342  0.042105263  0.042105263 0.2631579 1.0000000 0.2631579 0.41666667
## 240  0.041228070  0.041228070 0.2629804 1.0000000 0.2629804 0.41644421
## 514  0.040350877  0.040350877 0.2628032 1.0000000 0.2628032 0.41622199
## 1029 0.039473684  0.039473684 0.2626263 1.0000000 0.2626263 0.41600000
## 816  0.038596491  0.038596491 0.2624495 1.0000000 0.2624495 0.41577825
## 1342 0.037719298  0.037719298 0.2622730 1.0000000 0.2622730 0.41555674
## 157  0.036842105  0.036842105 0.2620968 1.0000000 0.2620968 0.41533546
## 544  0.035964912  0.035964912 0.2619208 1.0000000 0.2619208 0.41511442
## 1371 0.035087719  0.035087719 0.2617450 1.0000000 0.2617450 0.41489362
## 132  0.034210526  0.034210526 0.2615694 1.0000000 0.2615694 0.41467305
## 119  0.033333333  0.033333333 0.2613941 1.0000000 0.2613941 0.41445271
## 1024 0.032456140  0.032456140 0.2612190 1.0000000 0.2612190 0.41423261
## 1402 0.031578947  0.031578947 0.2610442 1.0000000 0.2610442 0.41401274
## 267  0.030701754  0.030701754 0.2608696 1.0000000 0.2608696 0.41379310
## 1063 0.029824561  0.029824561 0.2606952 1.0000000 0.2606952 0.41357370
## 876  0.028947368  0.028947368 0.2605210 1.0000000 0.2605210 0.41335453
## 1474 0.028070175  0.028070175 0.2603471 1.0000000 0.2603471 0.41313559
## 165  0.027192982  0.027192982 0.2601734 1.0000000 0.2601734 0.41291689
## 1115 0.026315789  0.026315789 0.2600000 1.0000000 0.2600000 0.41269841
## 222  0.025438596  0.025438596 0.2598268 1.0000000 0.2598268 0.41248017
## 1248 0.024561404  0.024561404 0.2596538 1.0000000 0.2596538 0.41226216
## 912  0.023684211  0.023684211 0.2594810 1.0000000 0.2594810 0.41204437
## 923  0.022807018  0.022807018 0.2593085 1.0000000 0.2593085 0.41182682
## 134  0.021929825  0.021929825 0.2591362 1.0000000 0.2591362 0.41160950
## 885  0.021052632  0.021052632 0.2589641 1.0000000 0.2589641 0.41139241
## 629  0.020175439  0.020175439 0.2587923 1.0000000 0.2587923 0.41117554
## 723  0.019298246  0.019298246 0.2586207 1.0000000 0.2586207 0.41095890
## 472  0.018421053  0.018421053 0.2584493 1.0000000 0.2584493 0.41074250
## 453  0.017543860  0.017543860 0.2582781 1.0000000 0.2582781 0.41052632
## 33   0.016666667  0.016666667 0.2581072 1.0000000 0.2581072 0.41031036
## 1456 0.015789474  0.015789474 0.2579365 1.0000000 0.2579365 0.41009464
## 712  0.014912281  0.014912281 0.2577660 1.0000000 0.2577660 0.40987914
## 1136 0.014035088  0.014035088 0.2575958 1.0000000 0.2575958 0.40966387
## 112  0.013157895  0.013157895 0.2574257 1.0000000 0.2574257 0.40944882
## 1530 0.012280702  0.012280702 0.2572559 1.0000000 0.2572559 0.40923400
## 407  0.011403509  0.011403509 0.2570864 1.0000000 0.2570864 0.40901940
## 1011 0.010526316  0.010526316 0.2569170 1.0000000 0.2569170 0.40880503
## 716  0.009649123  0.009649123 0.2567479 1.0000000 0.2567479 0.40859089
## 413  0.008771930  0.008771930 0.2565789 1.0000000 0.2565789 0.40837696
## 1432 0.007894737  0.007894737 0.2564103 1.0000000 0.2564103 0.40816327
## 1314 0.007017544  0.007017544 0.2562418 1.0000000 0.2562418 0.40794979
## 274  0.006140351  0.006140351 0.2560735 1.0000000 0.2560735 0.40773654
## 1166 0.005263158  0.005263158 0.2559055 1.0000000 0.2559055 0.40752351
## 1229 0.004385965  0.004385965 0.2557377 1.0000000 0.2557377 0.40731070
## 168  0.003508772  0.003508772 0.2555701 1.0000000 0.2555701 0.40709812
## 920  0.002631579  0.002631579 0.2554028 1.0000000 0.2554028 0.40688576
## 163  0.001754386  0.001754386 0.2552356 1.0000000 0.2552356 0.40667362
## 903  0.000877193  0.000877193 0.2550687 1.0000000 0.2550687 0.40646170
## 1238 0.000000000  0.000000000 0.2549020 0.0000000       NaN 0.40625000
##             MCC         FPR           PG           RG
## 199  0.04372365 0.000000000 1.0000000000 0.0000000000
## 353  0.06185481 0.000000000 1.0000000000 0.0000000000
## 299  0.07578116 0.000000000 1.0000000000 0.0000000000
## 482  0.08753321 0.000000000 1.0000000000 0.0000000000
## 432  0.09789718 0.000000000 1.0000000000 0.0000000000
## 50   0.08328019 0.000877193 0.6469298246 0.0000000000
## 246  0.09368628 0.000877193 0.6928034372 0.0000000000
## 1201 0.10315843 0.000877193 0.7282072368 0.0000000000
## 1037 0.11190350 0.000877193 0.7563352827 0.0000000000
## 1502 0.12006340 0.000877193 0.7792105263 0.0000000000
## 794  0.10998878 0.001754386 0.6185297956 0.0000000000
## 153  0.11800850 0.001754386 0.6469298246 0.0000000000
## 90   0.12559089 0.001754386 0.6714419184 0.0000000000
## 998  0.13279795 0.001754386 0.6928034372 0.0000000000
## 400  0.13967878 0.001754386 0.7115789474 0.0000000000
## 135  0.14627298 0.001754386 0.7282072368 0.0000000000
## 1092 0.15261299 0.001754386 0.7430340557 0.0000000000
## 349  0.15872574 0.001754386 0.7563352827 0.0000000000
## 871  0.15109140 0.002631579 0.6636535938 0.0000000000
## 784  0.15715266 0.002631579 0.6788815789 0.0000000000
## 395  0.16302041 0.002631579 0.6928034372 0.0000000000
## 1408 0.16871171 0.002631579 0.7055785124 0.0000000000
## 783  0.17424136 0.002631579 0.7173415581 0.0000000000
## 788  0.17962228 0.002631579 0.7282072368 0.0000000000
## 870  0.17303625 0.003508772 0.6596210526 0.0000000000
## 49   0.17837829 0.003508772 0.6714419184 0.0000000000
## 388  0.18358913 0.003508772 0.6824777994 0.0000000000
## 868  0.17748885 0.004385965 0.6245636412 0.0000000000
## 725  0.17165650 0.005263158 0.5728769009 0.0000000000
## 384  0.17688716 0.005263158 0.5852631579 0.0000000000
## 307  0.17135549 0.006140351 0.5395695274 0.0000000000
## 601  0.16604163 0.007017544 0.4983552632 0.0000000000
## 793  0.17125333 0.007017544 0.5110917790 0.0000000000
## 1414 0.17635328 0.007017544 0.5232198142 0.0000000000
## 1307 0.18134802 0.007017544 0.5347798067 0.0000000000
## 24   0.18624354 0.007017544 0.5458089669 0.0000000000
## 512  0.18128244 0.007894737 0.5097074315 0.0000000000
## 959  0.17648475 0.008771930 0.4766000875 0.0000000000
## 151  0.18135589 0.008771930 0.4876985363 0.0000000000
## 318  0.18613788 0.008771930 0.4983552632 0.0000000000
## 130  0.19083522 0.008771930 0.5085945083 0.0000000000
## 148  0.19545205 0.008771930 0.5184389545 0.0000000000
## 431  0.19999223 0.008771930 0.5279098232 0.0000000000
## 1413 0.20445932 0.008771930 0.5370269682 0.0000000000
## 179  0.20885664 0.008771930 0.5458089669 0.0000000000
## 128  0.21318729 0.008771930 0.5542732066 0.0000000000
## 1016 0.20876280 0.009649123 0.5253627505 0.0000000000
## 435  0.21305668 0.009649123 0.5337513706 0.0000000000
## 1035 0.21728926 0.009649123 0.5418575594 0.0000000000
## 1308 0.22146303 0.009649123 0.5496947368 0.0000000000
## 1305 0.22558036 0.009649123 0.5572755418 0.0000000000
## 1304 0.22964346 0.009649123 0.5646118810 0.0000000000
## 245  0.23365440 0.009649123 0.5717149763 0.0000000000
## 1086 0.23761514 0.009649123 0.5785954083 0.0000000000
## 374  0.24152754 0.009649123 0.5852631579 0.0000000000
## 1090 0.24539334 0.009649123 0.5917276450 0.0000000000
## 1501 0.24921419 0.009649123 0.5979977645 0.0000000000
## 907  0.24513859 0.010526316 0.5728769009 0.0000000000
## 1071 0.24114947 0.011403509 0.5491011355 0.0000000000
## 978  0.23724332 0.012280702 0.5265789474 0.0000000000
## 977  0.23341683 0.013157895 0.5052263823 0.0000000000
## 46   0.23727273 0.013157895 0.5119187798 0.0000000000
## 1384 0.23353834 0.014035088 0.4917452361 0.0000000000
## 479  0.23736731 0.014035088 0.4983552632 0.0000000000
## 186  0.24115515 0.014035088 0.5048022423 0.0000000000
## 1383 0.23752132 0.014912281 0.4857727998 0.0000000000
## 1087 0.24128352 0.014912281 0.4921386782 0.0000000000
## 54   0.23772967 0.015789474 0.4740712074 0.0000000000
## 65   0.24146626 0.015789474 0.4803502139 0.0000000000
## 483  0.24516543 0.015789474 0.4864876477 0.0000000000
## 1070 0.24169891 0.016666667 0.4693513192 0.0000000000
## 308  0.23829164 0.017543860 0.4529727096 0.0000000000
## 185  0.24197746 0.017543860 0.4590670709 0.0000000000
## 1091 0.24562806 0.017543860 0.4650340241 0.0000000000
## 77   0.24924444 0.017543860 0.4708771930 0.0000000000
## 370  0.25282755 0.017543860 0.4766000875 0.0000000000
## 792  0.25637829 0.017543860 0.4822061056 0.0000000000
## 1197 0.25989754 0.017543860 0.4876985363 0.0000000000
## 177  0.26338614 0.017543860 0.4930805623 0.0000000000
## 159  0.26010772 0.018421053 0.4776768092 0.0000000000
## 399  0.26357681 0.018421053 0.4829976175 0.0000000000
## 195  0.26701683 0.018421053 0.4882158177 0.0000000000
## 234  0.27042852 0.018421053 0.4933341483 0.0000000000
## 743  0.26722869 0.019298246 0.4786519871 0.0000000000
## 190  0.27062240 0.019298246 0.4837151703 0.0000000000
## 922  0.26747779 0.020175439 0.4696172896 0.0000000000
## 1203 0.27085359 0.020175439 0.4746229426 0.0000000000
## 1095 0.27420311 0.020175439 0.4795393378 0.0000000000
## 249  0.27752700 0.020175439 0.4843686669 0.0000000000
## 790  0.28082586 0.020175439 0.4891130604 0.0000000000
## 397  0.28410026 0.020175439 0.4937745886 0.0000000000
## 1439 0.28104217 0.021052632 0.4803502139 0.0000000000
## 127  0.28430117 0.021052632 0.4849663180 0.0000000000
## 813  0.28129135 0.021929825 0.4720312835 0.0000000000
## 402  0.28453497 0.021929825 0.4766000875 0.0000000000
## 38   0.28775579 0.021929825 0.4810940927 0.0000000000
## 238  0.29095430 0.021929825 0.4855149884 0.0000000000
## 710  0.28800575 0.022807018 0.4730923519 0.0000000000
## 1441 0.28509362 0.023684211 0.4610700304 0.0000000000
## 1196 0.28828492 0.023684211 0.4654710526 0.0000000000
## 378  0.29145488 0.023684211 0.4698043020 0.0000000000
## 258  0.29460397 0.023684211 0.4740712074 0.0000000000
## 348  0.29773260 0.023684211 0.4782731643 0.0000000000
## 928  0.29488280 0.024561404 0.4667159763 0.0000000000
## 235  0.29799815 0.024561404 0.4708771930 0.0000000000
## 236  0.30109389 0.024561404 0.4749770475 0.0000000000
## 593  0.30417042 0.024561404 0.4790167838 0.0000000000
## 1202 0.30722812 0.024561404 0.4829976175 0.0000000000
## 189  0.31026735 0.024561404 0.4869207359 0.0000000000
## 200  0.31328849 0.024561404 0.4907872988 0.0000000000
## 294  0.31629188 0.024561404 0.4945984391 0.0000000000
## 699  0.31927786 0.024561404 0.4983552632 0.0000000000
## 1228 0.31651244 0.025438596 0.4873233283 0.0000000000
## 191  0.31948778 0.025438596 0.4910519026 0.0000000000
## 371  0.32244636 0.025438596 0.4947288827 0.0000000000
## 262  0.32538850 0.025438596 0.4983552632 0.0000000000
## 389  0.32831450 0.025438596 0.5019320161 0.0000000000
## 233  0.33122465 0.025438596 0.5054600916 0.0000000000
## 1211 0.32851948 0.026315789 0.4948505718 0.0000000000
## 803  0.32584184 0.027192982 0.4845230263 0.0000000000
## 251  0.32874840 0.027192982 0.4880490619 0.0000000000
## 1374 0.32610331 0.028070175 0.4780124188 0.0000000000
## 1447 0.32348439 0.028947368 0.4682363255 0.0000000000
## 748  0.32089113 0.029824561 0.4587121420 0.0000000000
## 795  0.31832303 0.030701754 0.4494315789 0.0000000000
## 491  0.31577959 0.031578947 0.4403866810 0.0000000000
## 1500 0.31869630 0.031578947 0.4439372037 0.0000000000
## 563  0.31618144 0.032456140 0.4351276598 0.0000000000
## 638  0.31369009 0.033333333 0.4265368668 0.0000000000
## 1139 0.31122182 0.034210526 0.4181578947 0.0000000000
## 441  0.30877620 0.035087719 0.4099840826 0.0000000000
## 210  0.30635279 0.035964912 0.4020090257 0.0000000000
## 15   0.30927453 0.035964912 0.4055389761 0.0000000000
## 832  0.30687636 0.036842105 0.3977559180 0.0000000000
## 481  0.30978696 0.036842105 0.4012475634 0.0000000000
## 1409 0.31268324 0.036842105 0.4047020124 0.0000000000
## 631  0.31031289 0.037719298 0.3971021645 0.0000000000
## 1000 0.31319843 0.037719298 0.4005198488 0.0000000000
## 1302 0.31607014 0.037719298 0.4039019447 0.0000000000
## 1040 0.31892825 0.037719298 0.4072489259 0.0000000000
## 851  0.31658800 0.038596491 0.3998236878 0.0000000000
## 446  0.31426744 0.039473684 0.3925664812 0.0000000000
## 188  0.31711851 0.039473684 0.3958783212 0.0000000000
## 306  0.31482023 0.040350877 0.3887822856 0.0000000000
## 126  0.31766116 0.040350877 0.3920595782 0.0000000000
## 1036 0.32048919 0.040350877 0.3953047377 0.0005190491
## 1051 0.31821547 0.041228070 0.3883615745 0.0005190491
## 1506 0.32103369 0.041228070 0.3915735170 0.0014154469
## 1519 0.31878100 0.042105263 0.3847787795 0.0014154469
## 656  0.31654614 0.042982456 0.3781298246 0.0014154469
## 1417 0.31935731 0.042982456 0.3813059907 0.0023294924
## 166  0.31714253 0.043859649 0.3747949774 0.0023294924
## 785  0.31994401 0.043859649 0.3779383098 0.0032611855
## 173  0.32273348 0.043859649 0.3810529867 0.0042105263
## 316  0.32551109 0.043859649 0.3841393286 0.0051775148
## 436  0.32827704 0.043859649 0.3871976539 0.0061621509
## 20   0.33103148 0.043859649 0.3902282787 0.0071644348
## 434  0.33377458 0.043859649 0.3932315165 0.0081843662
## 300  0.33650651 0.043859649 0.3962076783 0.0092219454
## 68   0.33432641 0.044736842 0.3898139391 0.0092219454
## 302  0.33704992 0.044736842 0.3927622188 0.0102771722
## 1004 0.33976260 0.044736842 0.3956844271 0.0113500467
## 999  0.34246460 0.044736842 0.3985808550 0.0124405689
## 405  0.34030809 0.045614035 0.3923103416 0.0124405689
## 203  0.34300211 0.045614035 0.3951805133 0.0135487387
## 781  0.34568575 0.045614035 0.3980258383 0.0146745562
## 331  0.34354967 0.046491228 0.3918749328 0.0146745562
## 1246 0.34142865 0.047368421 0.3858418367 0.0146745562
## 1406 0.34410694 0.047368421 0.3886602821 0.0158180214
## 1001 0.34677520 0.047368421 0.3914551084 0.0169791342
## 1039 0.34943354 0.047368421 0.3942265636 0.0181578947
## 1199 0.35208210 0.047368421 0.3969748940 0.0193543029
## 1278 0.34998521 0.048245614 0.3910500465 0.0193543029
## 698  0.35262649 0.048245614 0.3937746417 0.0205683588
## 511  0.35054613 0.049122807 0.3879578947 0.0205683588
## 476  0.35318021 0.049122807 0.3906589822 0.0218000623
## 375  0.35580493 0.049122807 0.3933382724 0.0230494135
## 344  0.35842041 0.049122807 0.3959959867 0.0243164123
## 487  0.36102678 0.049122807 0.3986323444 0.0256010589
## 1301 0.36362415 0.049122807 0.4012475634 0.0269033531
## 764  0.36156897 0.050000000 0.3955312719 0.0269033531
## 1412 0.36415975 0.050000000 0.3981252264 0.0282232949
## 154  0.36674178 0.050000000 0.4006987369 0.0295608845
## 1098 0.36931517 0.050000000 0.4032520085 0.0309161217
## 295  0.37188003 0.050000000 0.4057852447 0.0322890065
## 1093 0.37443646 0.050000000 0.4082986472 0.0336795391
## 1311 0.37698458 0.050000000 0.4107924161 0.0350877193
## 1317 0.37495622 0.050877193 0.4051755974 0.0350877193
## 1306 0.37749843 0.050877193 0.4076505196 0.0365135472
## 1318 0.37548498 0.051754386 0.4021293191 0.0365135472
## 81   0.37802131 0.051754386 0.4045855160 0.0379570227
## 815  0.37602248 0.052631579 0.3991570724 0.0379570227
## 1508 0.37855299 0.052631579 0.4015946737 0.0394181460
## 1504 0.38107564 0.052631579 0.4040140739 0.0408969168
## 7    0.38359050 0.052631579 0.4064154469 0.0423933354
## 1103 0.38161022 0.053508772 0.4010767169 0.0423933354
## 1368 0.37964180 0.054385965 0.3958251681 0.0423933354
## 696  0.38215318 0.054385965 0.3982085609 0.0439074016
## 242  0.38465700 0.054385965 0.4005746798 0.0454391155
## 443  0.38270430 0.055263158 0.3954072368 0.0454391155
## 1033 0.38520266 0.055263158 0.3977559180 0.0469884771
## 758  0.38326336 0.056140351 0.3926704812 0.0469884771
## 1176 0.38133530 0.057017544 0.3876656990 0.0469884771
## 697  0.38383017 0.057017544 0.3899961300 0.0485554863
## 123  0.38631778 0.057017544 0.3923103416 0.0501401433
## 279  0.38879821 0.057017544 0.3946084754 0.0517424478
## 836  0.38688683 0.057894737 0.3896793022 0.0517424478
## 1002 0.38936205 0.057894737 0.3919607404 0.0533624001
## 8    0.39183028 0.057894737 0.3942265636 0.0550000000
## 1388 0.38993335 0.058771930 0.3893716434 0.0550000000
## 1509 0.39239651 0.058771930 0.3916212219 0.0566552476
## 802  0.39051192 0.059649123 0.3868392947 0.0566552476
## 61   0.39297006 0.059649123 0.3890727613 0.0583281428
## 819  0.39109760 0.060526316 0.3843618841 0.0583281428
## 498  0.38923533 0.061403509 0.3797216134 0.0583281428
## 216  0.39169021 0.061403509 0.3819376760 0.0600186858
## 484  0.39413844 0.061403509 0.3841393286 0.0617268764
## 460  0.39228958 0.062280702 0.3795650065 0.0617268764
## 282  0.39473294 0.062280702 0.3817509621 0.0634527146
## 892  0.39716983 0.062280702 0.3839229013 0.0651962006
## 594  0.39960030 0.062280702 0.3860809350 0.0669573342
## 16   0.40202444 0.062280702 0.3882251740 0.0687361154
## 654  0.40019205 0.063157895 0.3837123525 0.0687361154
## 313  0.39836921 0.064035088 0.3792644628 0.0687361154
## 894  0.40079040 0.064035088 0.3813925926 0.0705325444
## 898  0.40320541 0.064035088 0.3835074461 0.0723466210
## 1200 0.40561432 0.064035088 0.3856091256 0.0741783453
## 1393 0.40380572 0.064912281 0.3812205375 0.0741783453
## 1411 0.40621021 0.064912281 0.3833079581 0.0760277172
## 1097 0.40860874 0.064912281 0.3853825490 0.0778947368
## 1468 0.40681250 0.065789474 0.3810529867 0.0778947368
## 766  0.40502528 0.066666667 0.3767835910 0.0778947368
## 433  0.40742106 0.066666667 0.3788428595 0.0797794041
## 478  0.40981101 0.066666667 0.3808897655 0.0816817191
## 925  0.40803575 0.067543860 0.3766762765 0.0816817191
## 70   0.41042148 0.067543860 0.3787095171 0.0836016817
## 1370 0.40865645 0.068421053 0.3745519864 0.0836016817
## 277  0.41103800 0.068421053 0.3765716813 0.0855392920
## 1031 0.41341394 0.068421053 0.3785795435 0.0874945500
## 314  0.41166045 0.069298246 0.3744750548 0.0874945500
## 728  0.40991541 0.070175439 0.3704255128 0.0874945500
## 18   0.41228871 0.070175439 0.3724184787 0.0894674556
## 66   0.41465655 0.070175439 0.3744000299 0.0914580089
## 350  0.41701897 0.070175439 0.3763702457 0.0934662099
## 28   0.41937603 0.070175439 0.3783292049 0.0954920585
## 329  0.41764501 0.071052632 0.3743268418 0.0954920585
## 283  0.41999821 0.071052632 0.3762732159 0.0975355549
## 351  0.42234618 0.071052632 0.3782086060 0.0995966988
## 237  0.42468896 0.071052632 0.3801330878 0.1016754905
## 689  0.42702661 0.071052632 0.3820467368 0.1037719298
## 964  0.42530938 0.071929825 0.3780909075 0.1037719298
## 683  0.42360005 0.072807018 0.3741857123 0.1037719298
## 590  0.42593547 0.072807018 0.3760860932 0.1058860168
## 621  0.42423533 0.073684211 0.3722291655 0.1058860168
## 366  0.42254291 0.074561404 0.3684210526 0.1058860168
## 1462 0.42085812 0.075438596 0.3646609658 0.1058860168
## 1056 0.42319257 0.075438596 0.3665460491 0.1080177515
## 1141 0.42151663 0.076315789 0.3628312601 0.1080177515
## 260  0.42384744 0.076315789 0.3647044147 0.1101671338
## 595  0.42617339 0.076315789 0.3665676581 0.1123341638
## 1392 0.42450742 0.077192982 0.3628952815 0.1123341638
## 104  0.42284879 0.078070175 0.3592681846 0.1123341638
## 961  0.42119740 0.078947368 0.3556856547 0.1123341638
## 129  0.42352227 0.078947368 0.3575331666 0.1145188415
## 1395 0.42187925 0.079824561 0.3539922430 0.1145188415
## 181  0.42420057 0.079824561 0.3558281091 0.1167211668
## 429  0.42651719 0.079824561 0.3576546467 0.1189411398
## 1124 0.42488361 0.080701754 0.3541522552 0.1189411398
## 895  0.42719678 0.080701754 0.3559674119 0.1211787605
## 1018 0.42557132 0.081578947 0.3525048733 0.1211787605
## 1049 0.42395273 0.082456140 0.3490836540 0.1211787605
## 1309 0.42626363 0.082456140 0.3508852554 0.1234340289
## 1156 0.42465296 0.083333333 0.3475023145 0.1234340289
## 1321 0.42304901 0.084210526 0.3441593221 0.1234340289
## 55   0.42535759 0.084210526 0.3459472814 0.1257069449
## 149  0.42766172 0.084210526 0.3477265944 0.1279975086
## 1127 0.42606658 0.085087719 0.3444179138 0.1279975086
## 4    0.42836738 0.085087719 0.3461862468 0.1303057199
## 178  0.43066381 0.085087719 0.3479461169 0.1326315789
## 591  0.43295592 0.085087719 0.3496975698 0.1349750856
## 756  0.43137054 0.085964912 0.3464201848 0.1349750856
## 951  0.42979157 0.086842105 0.3431804103 0.1349750856
## 1505 0.43208156 0.086842105 0.3449189093 0.1373362400
## 141  0.43436733 0.086842105 0.3466492524 0.1397150420
## 513  0.43279680 0.087719298 0.3434417068 0.1397150420
## 72   0.43507945 0.087719298 0.3451616473 0.1421114917
## 1285 0.43351621 0.088596491 0.3419880116 0.1421114917
## 1478 0.43195914 0.089473684 0.3388500548 0.1421114917
## 147  0.43423973 0.089473684 0.3405572755 0.1445255891
## 161  0.43268978 0.090350877 0.3374519682 0.1445255891
## 1133 0.43114588 0.091228070 0.3343812289 0.1445255891
## 547  0.42960796 0.092105263 0.3313445670 0.1445255891
## 1174 0.42807600 0.092982456 0.3283415005 0.1445255891
## 1198 0.43035640 0.092982456 0.3300306159 0.1469573342
## 1484 0.42883124 0.093859649 0.3270578630 0.1469573342
## 585  0.43110857 0.093859649 0.3287368205 0.1494067269
## 530  0.42959014 0.094736842 0.3257938234 0.1494067269
## 618  0.42807745 0.095614035 0.3228828597 0.1494067269
## 936  0.42657046 0.096491228 0.3200034852 0.1494067269
## 304  0.42884654 0.096491228 0.3216666667 0.1518737673
## 192  0.43111872 0.096491228 0.3233227936 0.1543584553
## 1336 0.42961911 0.097368421 0.3204686890 0.1543584553
## 1078 0.42812506 0.098245614 0.3176451569 0.1543584553
## 86   0.43039513 0.098245614 0.3192885260 0.1568607910
## 1389 0.42890744 0.099122807 0.3164921710 0.1568607910
## 1075 0.42742521 0.100000000 0.3137254902 0.1568607910
## 95   0.42594838 0.100877193 0.3109880825 0.1568607910
## 782  0.42821713 0.100877193 0.3126156781 0.1593807744
## 1300 0.43048215 0.100877193 0.3142366709 0.1619184055
## 1068 0.42901228 0.101754386 0.3115219892 0.1619184055
## 891  0.43127440 0.101754386 0.3131334348 0.1644736842
## 1084 0.42981062 0.102631579 0.3104440789 0.1644736842
## 564  0.42835206 0.103508772 0.3077826445 0.1644736842
## 545  0.42689868 0.104385965 0.3051487623 0.1644736842
## 93   0.42915949 0.104385965 0.3067446394 0.1670466106
## 228  0.42771201 0.105263158 0.3041347962 0.1670466106
## 387  0.42996999 0.105263158 0.3057213384 0.1696371847
## 26   0.42852833 0.106140351 0.3031351296 0.1696371847
## 981  0.42709169 0.107017544 0.3005752902 0.1696371847
## 298  0.42934760 0.107017544 0.3021494655 0.1722454064
## 589  0.43160001 0.107017544 0.3037176311 0.1748712758
## 1333 0.43016981 0.107894737 0.3011775151 0.1748712758
## 576  0.42874453 0.108771930 0.2986629847 0.1748712758
## 954  0.42732413 0.109649123 0.2961737119 0.1748712758
## 789  0.42957523 0.109649123 0.2977265649 0.1775147929
## 75   0.43182292 0.109649123 0.2992736390 0.1801759576
## 1262 0.43040874 0.110526316 0.2968029450 0.1801759576
## 1485 0.42899934 0.111403509 0.2943567719 0.1801759576
## 1407 0.43124505 0.111403509 0.2958918670 0.1828547701
## 99   0.42984107 0.112280702 0.2934667247 0.1828547701
## 522  0.42844176 0.113157895 0.2910654435 0.1828547701
## 939  0.42704711 0.114035088 0.2886877249 0.1828547701
## 714  0.42565707 0.114912281 0.2863332750 0.1828547701
## 1186 0.42427160 0.115789474 0.2840018041 0.1828547701
## 1155 0.42289067 0.116666667 0.2816930274 0.1828547701
## 1164 0.42151425 0.117543860 0.2794066640 0.1828547701
## 517  0.42014231 0.118421053 0.2771424374 0.1828547701
## 1386 0.41877479 0.119298246 0.2749000754 0.1828547701
## 1486 0.41741169 0.120175439 0.2726793097 0.1828547701
## 1288 0.41605295 0.121052632 0.2704798762 0.1828547701
## 284  0.41830217 0.121052632 0.2719727484 0.1855512301
## 701  0.42054817 0.121052632 0.2734606600 0.1882653379
## 1250 0.41919488 0.121929825 0.2712752608 0.1882653379
## 1289 0.41784586 0.122807018 0.2691106146 0.1882653379
## 708  0.41650109 0.123684211 0.2669664710 0.1882653379
## 1188 0.41516054 0.124561404 0.2648425836 0.1882653379
## 840  0.41382417 0.125438596 0.2627387094 0.1882653379
## 1265 0.41249196 0.126315789 0.2606546092 0.1882653379
## 1327 0.41116388 0.127192982 0.2585900470 0.1882653379
## 538  0.40983988 0.128070175 0.2565447905 0.1882653379
## 1073 0.40851995 0.128947368 0.2545186108 0.1882653379
## 1145 0.40720405 0.129824561 0.2525112821 0.1882653379
## 369  0.40945200 0.129824561 0.2539585930 0.1909970933
## 746  0.40814056 0.130701754 0.2519661874 0.1909970933
## 562  0.40683308 0.131578947 0.2499921695 0.1909970933
## 1193 0.40907888 0.131578947 0.2514277504 0.1937464964
## 473  0.40777578 0.132456140 0.2494682083 0.1937464964
## 1320 0.40647658 0.133333333 0.2475266065 0.1937464964
## 536  0.40518124 0.134210526 0.2456027368 0.1937464964
## 773  0.40388974 0.135087719 0.2436963938 0.1937464964
## 219  0.40260206 0.135964912 0.2418073752 0.1937464964
## 837  0.40131816 0.136842105 0.2399354817 0.1937464964
## 137  0.40356350 0.136842105 0.2413446019 0.1965135472
## 287  0.40580589 0.136842105 0.2427497315 0.1992982456
## 616  0.40452654 0.137719298 0.2408872999 0.1992982456
## 1385 0.40325091 0.138596491 0.2390415706 0.1992982456
## 995  0.40549120 0.138596491 0.2404353733 0.2021005917
## 1354 0.40421965 0.139473684 0.2386024634 0.2021005917
## 685  0.40295175 0.140350877 0.2367858638 0.2021005917
## 986  0.40168748 0.141228070 0.2349853908 0.2021005917
## 146  0.40392607 0.141228070 0.2363643177 0.2049205855
## 841  0.40266578 0.142105263 0.2345760995 0.2049205855
## 490  0.40140904 0.142982456 0.2328036343 0.2049205855
## 122  0.40364558 0.142982456 0.2341715068 0.2077582269
## 1253 0.40239276 0.143859649 0.2324109474 0.2077582269
## 569  0.40114344 0.144736842 0.2306657796 0.2077582269
## 1160 0.39989761 0.145614035 0.2289358333 0.2077582269
## 1362 0.39865524 0.146491228 0.2272209404 0.2077582269
## 404  0.39741631 0.147368421 0.2255209351 0.2077582269
## 293  0.39965187 0.147368421 0.2268668902 0.2106135160
## 1177 0.39841669 0.148245614 0.2251779240 0.2106135160
## 503  0.39718488 0.149122807 0.2235035108 0.2106135160
## 635  0.39595644 0.150000000 0.2218434920 0.2106135160
## 644  0.39473132 0.150877193 0.2201977111 0.2106135160
## 1361 0.39350952 0.151754386 0.2185660136 0.2106135160
## 1180 0.39229101 0.152631579 0.2169482473 0.2106135160
## 1195 0.39452583 0.152631579 0.2182687655 0.2134864528
## 1089 0.39675802 0.152631579 0.2195860906 0.2163770373
## 19   0.39898759 0.152631579 0.2209002194 0.2192852694
## 869  0.39777328 0.153508772 0.2192852694 0.2192852694
## 1464 0.39656219 0.154385965 0.2176839296 0.2192852694
## 462  0.39535430 0.155263158 0.2160960551 0.2192852694
## 856  0.39414960 0.156140351 0.2145215028 0.2192852694
## 1483 0.39294805 0.157017544 0.2129601313 0.2192852694
## 575  0.39174964 0.157894737 0.2114118014 0.2192852694
## 649  0.39055434 0.158771930 0.2098763754 0.2192852694
## 377  0.39278348 0.158771930 0.2111621331 0.2222111492
## 212  0.39159157 0.159649123 0.2096358545 0.2222111492
## 1194 0.39381849 0.159649123 0.2109150994 0.2251546766
## 244  0.39604293 0.159649123 0.2121914474 0.2281158518
## 1453 0.39485466 0.160526316 0.2106706590 0.2281158518
## 278  0.39707695 0.160526316 0.2119405916 0.2310946746
## 1158 0.39589201 0.161403509 0.2104287713 0.2310946746
## 584  0.39811218 0.161403509 0.2116923521 0.2340911450
## 642  0.39693054 0.162280702 0.2101893967 0.2340911450
## 588  0.39914862 0.162280702 0.2114466883 0.2371052632
## 1467 0.39797027 0.163157895 0.2099524963 0.2371052632
## 172  0.40018628 0.163157895 0.2112035604 0.2401370290
## 763  0.39901119 0.164035088 0.2097180320 0.2401370290
## 71   0.40122518 0.164035088 0.2109629293 0.2431864424
## 292  0.40343686 0.164035088 0.2122050825 0.2462535036
## 1053 0.40226532 0.164912281 0.2107247570 0.2462535036
## 209  0.40447503 0.164912281 0.2119608333 0.2493382124
## 770  0.40330670 0.165789474 0.2104890061 0.2493382124
## 36   0.40551447 0.165789474 0.2117190640 0.2524405689
## 243  0.40772002 0.165789474 0.2129464329 0.2555605730
## 568  0.40655521 0.166666667 0.2114797371 0.2555605730
## 565  0.40539324 0.167543860 0.2100246223 0.2555605730
## 515  0.40423411 0.168421053 0.2085809731 0.2555605730
## 108  0.40307779 0.169298246 0.2071486753 0.2555605730
## 947  0.40192427 0.170175439 0.2057276162 0.2555605730
## 774  0.40077352 0.171052632 0.2043176845 0.2555605730
## 145  0.40297876 0.171052632 0.2055228610 0.2586982249
## 879  0.40183107 0.171929825 0.2041206835 0.2586982249
## 982  0.40068611 0.172807018 0.2027294118 0.2586982249
## 1007 0.40288981 0.172807018 0.2039256170 0.2618535243
## 458  0.40174788 0.173684211 0.2025419059 0.2618535243
## 1179 0.40060863 0.174561404 0.2011688851 0.2618535243
## 839  0.39947207 0.175438596 0.1998064505 0.2618535243
## 392  0.40167456 0.175438596 0.2009905781 0.2650264715
## 1005 0.40387498 0.175438596 0.2021723443 0.2682170663
## 1254 0.40274167 0.176315789 0.2008139924 0.2682170663
## 858  0.40161099 0.177192982 0.1994660178 0.2682170663
## 744  0.40048294 0.178070175 0.1981283203 0.2682170663
## 1088 0.40268221 0.178070175 0.1992982456 0.2714253088
## 762  0.40155705 0.178947368 0.1979675643 0.2714253088
## 834  0.40043447 0.179824561 0.1966469620 0.2714253088
## 1520 0.39931446 0.180701754 0.1953363424 0.2714253088
## 546  0.39819700 0.181578947 0.1940356102 0.2714253088
## 58   0.39708208 0.182456140 0.1927446716 0.2714253088
## 465  0.39596967 0.183333333 0.1914634334 0.2714253088
## 583  0.39816865 0.183333333 0.1926122520 0.2746511990
## 150  0.40036569 0.183333333 0.1937589491 0.2778947368
## 144  0.40256080 0.183333333 0.1949035184 0.2811559224
## 285  0.40475400 0.183333333 0.1960459538 0.2844347555
## 620  0.40364523 0.184210526 0.1947619254 0.2844347555
## 857  0.40253893 0.185087719 0.1934874121 0.2844347555
## 211  0.40143509 0.185964912 0.1922223248 0.2844347555
## 380  0.40362729 0.185964912 0.1933535209 0.2877312364
## 288  0.40581764 0.185964912 0.1944826511 0.2910453649
## 291  0.40800616 0.185964912 0.1956097095 0.2943771411
## 488  0.41019286 0.185964912 0.1967346905 0.2977265649
## 398  0.41237777 0.185964912 0.1978575886 0.3010936365
## 985  0.41127788 0.186842105 0.1965869245 0.3010936365
## 480  0.41346133 0.186842105 0.1977048284 0.3044783557
## 272  0.41236417 0.187719298 0.1964405040 0.3044783557
## 875  0.41126939 0.188596491 0.1951853404 0.3044783557
## 1244 0.41017700 0.189473684 0.1939392540 0.3044783557
## 124  0.41235966 0.189473684 0.1950464396 0.3078807225
## 979  0.41126993 0.190350877 0.1938064620 0.3078807225
## 1444 0.41018255 0.191228070 0.1925753963 0.3078807225
## 125  0.41236413 0.191228070 0.1936748601 0.3113007370
## 118  0.41127940 0.192105263 0.1924497626 0.3113007370
## 89   0.41345961 0.192105263 0.1935444323 0.3147383993
## 493  0.41237750 0.192982456 0.1923252460 0.3147383993
## 632  0.41129768 0.193859649 0.1911147310 0.3147383993
## 1058 0.41347688 0.193859649 0.1922018317 0.3181937091
## 760  0.41239966 0.194736842 0.1909970933 0.3181937091
## 1109 0.41132470 0.195614035 0.1898008714 0.3181937091
## 355  0.41025199 0.196491228 0.1886130900 0.3181937091
## 1110 0.40918152 0.197368421 0.1874336740 0.3181937091
## 205  0.40811328 0.198245614 0.1862625493 0.3181937091
## 749  0.40704724 0.199122807 0.1850996424 0.3181937091
## 1312 0.40922669 0.199122807 0.1861680820 0.3216666667
## 1074 0.40816315 0.200000000 0.1850105263 0.3216666667
## 1140 0.40710179 0.200877193 0.1838610444 0.3216666667
## 208  0.40928028 0.200877193 0.1849221765 0.3251572719
## 797  0.40822140 0.201754386 0.1837779266 0.3251572719
## 807  0.40716466 0.202631579 0.1826416102 0.3251572719
## 1442 0.40611007 0.203508772 0.1815131579 0.3251572719
## 1102 0.40505761 0.204385965 0.1803925012 0.3251572719
## 1303 0.40723577 0.204385965 0.1814409142 0.3286655248
## 396  0.40941243 0.204385965 0.1824876802 0.3321914253
## 1283 0.40836268 0.205263158 0.1813692802 0.3321914253
## 1281 0.40731503 0.206140351 0.1802585431 0.3321914253
## 996  0.40949081 0.206140351 0.1812982483 0.3357349735
## 182  0.41166514 0.206140351 0.1823363353 0.3392961694
## 1387 0.41062019 0.207017544 0.1812278109 0.3392961694
## 393  0.41279339 0.207017544 0.1822616121 0.3428750130
## 11   0.41496516 0.207017544 0.1832938030 0.3464715042
## 1445 0.41392292 0.207894737 0.1821875111 0.3464715042
## 1264 0.41288272 0.208771930 0.1810886899 0.3464715042
## 171  0.41505374 0.208771930 0.1821140247 0.3500856431
## 1216 0.41401591 0.209649123 0.1810199919 0.3500856431
## 1108 0.41298010 0.210526316 0.1799333043 0.3500856431
## 1482 0.41194630 0.211403509 0.1788539000 0.3500856431
## 1045 0.41091449 0.212280702 0.1777817173 0.3500856431
## 587  0.41308544 0.212280702 0.1787950789 0.3537174297
## 853  0.41205594 0.213157895 0.1777274621 0.3537174297
## 787  0.41422587 0.213157895 0.1787367368 0.3573668639
## 280  0.41639448 0.213157895 0.1797445135 0.3610339458
## 117  0.41536761 0.214035088 0.1786788681 0.3610339458
## 927  0.41434270 0.214912281 0.1776202677 0.3610339458
## 534  0.41331974 0.215789474 0.1765686538 0.3610339458
## 738  0.41229871 0.216666667 0.1755239682 0.3610339458
## 675  0.41127961 0.217543860 0.1744861537 0.3610339458
## 938  0.41026243 0.218421053 0.1734551532 0.3610339458
## 1215 0.40924715 0.219298246 0.1724309107 0.3610339458
## 69   0.40823376 0.220175439 0.1714133702 0.3610339458
## 359  0.40722225 0.221052632 0.1704024768 0.3610339458
## 261  0.40939248 0.221052632 0.1713859616 0.3647186754
## 1282 0.40838316 0.221929825 0.1703791367 0.3647186754
## 529  0.40737570 0.222807018 0.1693788522 0.3647186754
## 305  0.40954533 0.222807018 0.1703559797 0.3684210526
## 1120 0.40854003 0.223684211 0.1693596797 0.3684210526
## 940  0.40753657 0.224561404 0.1683698158 0.3684210526
## 1009 0.40653493 0.225438596 0.1673863358 0.3684210526
## 264  0.40553511 0.226315789 0.1664091879 0.3684210526
## 641  0.40453709 0.227192982 0.1654383210 0.3684210526
## 1451 0.40354087 0.228070175 0.1644736842 0.3684210526
## 376  0.40571120 0.228070175 0.1654346132 0.3721410775
## 256  0.40788038 0.228070175 0.1663943185 0.3758787501
## 1284 0.40688656 0.228947368 0.1654309338 0.3758787501
## 952  0.40589452 0.229824561 0.1644736842 0.3758787501
## 1055 0.40806320 0.229824561 0.1654272825 0.3796340704
## 232  0.41023077 0.229824561 0.1663796757 0.3834070383
## 674  0.40924113 0.230701754 0.1654236589 0.3834070383
## 945  0.40825324 0.231578947 0.1644736842 0.3834070383
## 1146 0.40726709 0.232456140 0.1635297036 0.3834070383
## 997  0.40943454 0.232456140 0.1644736842 0.3871976539
## 1528 0.40845044 0.233333333 0.1635332546 0.3871976539
## 1498 0.40746806 0.234210526 0.1625987270 0.3871976539
## 1375 0.40648738 0.235087719 0.1616700548 0.3871976539
## 1046 0.40550840 0.235964912 0.1607471921 0.3871976539
## 700  0.40767610 0.235964912 0.1616804961 0.3910059172
## 1222 0.40669914 0.236842105 0.1607610270 0.3910059172
## 80   0.40886613 0.236842105 0.1616908599 0.3948318281
## 849  0.40789117 0.237719298 0.1607747594 0.3948318281
## 270  0.40691788 0.238596491 0.1598643381 0.3948318281
## 1416 0.40908453 0.238596491 0.1607883907 0.3986753867
## 687  0.40811323 0.239473684 0.1598812718 0.3986753867
## 1006 0.41027923 0.239473684 0.1608019219 0.4025365930
## 1224 0.40930991 0.240350877 0.1598980816 0.4025365930
## 668  0.40834223 0.241228070 0.1589997944 0.4025365930
## 965  0.40737618 0.242105263 0.1581070174 0.4025365930
## 835  0.40641174 0.242982456 0.1572197082 0.4025365930
## 688  0.40544891 0.243859649 0.1563378248 0.4025365930
## 690  0.40761564 0.243859649 0.1572459206 0.4064154469
## 968  0.40665475 0.244736842 0.1563671339 0.4064154469
## 113  0.40569545 0.245614035 0.1554936929 0.4064154469
## 1326 0.40473773 0.246491228 0.1546255568 0.4064154469
## 540  0.40378158 0.247368421 0.1537626853 0.4064154469
## 739  0.40282700 0.248245614 0.1529050382 0.4064154469
## 1054 0.40187397 0.249122807 0.1520525760 0.4064154469
## 572  0.40092249 0.250000000 0.1512052593 0.4064154469
## 421  0.39997255 0.250877193 0.1503630492 0.4064154469
## 953  0.39902415 0.251754386 0.1495259071 0.4064154469
## 1359 0.39807726 0.252631579 0.1486937948 0.4064154469
## 334  0.39713189 0.253508772 0.1478666745 0.4064154469
## 855  0.39618802 0.254385965 0.1470445086 0.4064154469
## 1443 0.39524565 0.255263158 0.1462272599 0.4064154469
## 96   0.39430478 0.256140351 0.1454148917 0.4064154469
## 1153 0.39336538 0.257017544 0.1446073674 0.4064154469
## 1213 0.39242745 0.257894737 0.1438046508 0.4064154469
## 679  0.39149100 0.258771930 0.1430067062 0.4064154469
## 1341 0.39055599 0.259649123 0.1422134980 0.4064154469
## 916  0.38962244 0.260526316 0.1414249910 0.4064154469
## 373  0.39179450 0.260526316 0.1422893947 0.4103119485
## 874  0.39086270 0.261403509 0.1415033409 0.4103119485
## 944  0.38993234 0.262280702 0.1407219225 0.4103119485
## 139  0.39210425 0.262280702 0.1415811605 0.4142260978
## 1017 0.39117563 0.263157895 0.1408021496 0.4142260978
## 356  0.39024843 0.264035088 0.1400277097 0.4142260978
## 1390 0.38932264 0.264912281 0.1392578071 0.4142260978
## 548  0.38839825 0.265789474 0.1384924087 0.4142260978
## 266  0.38747526 0.266666667 0.1377314815 0.4142260978
## 336  0.38655365 0.267543860 0.1369749928 0.4142260978
## 634  0.38563341 0.268421053 0.1362229102 0.4142260978
## 1034 0.38780682 0.268421053 0.1370662017 0.4181578947
## 1044 0.38688828 0.269298246 0.1363163371 0.4181578947
## 138  0.38906129 0.269298246 0.1371568086 0.4221073394
## 1107 0.38814444 0.270175439 0.1364091491 0.4221073394
## 1144 0.38722894 0.271052632 0.1356658079 0.4221073394
## 1025 0.38631479 0.271929825 0.1349267538 0.4221073394
## 385  0.38848810 0.271929825 0.1357601762 0.4260744316
## 1041 0.39066073 0.271929825 0.1365929530 0.4300591716
## 187  0.39283271 0.271929825 0.1374250761 0.4340615592
## 94   0.39500404 0.271929825 0.1382565378 0.4380815945
## 23   0.39717474 0.271929825 0.1390873305 0.4421192775
## 486  0.39934482 0.271929825 0.1399174466 0.4461746081
## 409  0.39843407 0.272807018 0.1391701057 0.4461746081
## 346  0.40060391 0.272807018 0.1399974860 0.4502475864
## 430  0.40277315 0.272807018 0.1408241861 0.4543382124
## 1343 0.40186447 0.273684211 0.1400770061 0.4543382124
## 1212 0.40095711 0.274561404 0.1393340494 0.4543382124
## 167  0.40005106 0.275438596 0.1385952861 0.4543382124
## 319  0.40222085 0.275438596 0.1394152283 0.4584464860
## 286  0.40439008 0.275438596 0.1402345082 0.4625724073
## 82   0.40655878 0.275438596 0.1410531186 0.4667159763
## 174  0.40872696 0.275438596 0.1418710526 0.4708771930
## 637  0.40782374 0.276315789 0.1411284488 0.4708771930
## 962  0.40692183 0.277192982 0.1403899922 0.4708771930
## 531  0.40602120 0.278070175 0.1396556538 0.4708771930
## 671  0.40512186 0.278947368 0.1389254049 0.4708771930
## 1159 0.40422379 0.279824561 0.1381992171 0.4708771930
## 1105 0.40332699 0.280701754 0.1374770619 0.4708771930
## 39   0.40549702 0.280701754 0.1382825103 0.4750560573
## 528  0.40460187 0.281578947 0.1375624038 0.4750560573
## 114  0.40370798 0.282456140 0.1368462774 0.4750560573
## 888  0.40587835 0.282456140 0.1376472086 0.4792525693
## 383  0.40804826 0.282456140 0.1384475248 0.4834667290
## 40   0.41021775 0.282456140 0.1392472194 0.4876985363
## 1338 0.40932632 0.283333333 0.1385292560 0.4876985363
## 532  0.40843613 0.284210526 0.1378152274 0.4876985363
## 394  0.41060602 0.284210526 0.1386104762 0.4919479913
## 162  0.40971748 0.285087719 0.1378984513 0.4919479913
## 657  0.40883016 0.285964912 0.1371903105 0.4919479913
## 357  0.40794407 0.286842105 0.1364860273 0.4919479913
## 786  0.41011482 0.286842105 0.1372749864 0.4962150939
## 255  0.41228521 0.286842105 0.1380633523 0.5004998443
## 1069 0.41140117 0.287719298 0.1373591392 0.5004998443
## 88   0.41051833 0.288596491 0.1366587374 0.5004998443
## 1324 0.40963670 0.289473684 0.1359621211 0.5004998443
## 1420 0.40875626 0.290350877 0.1352692648 0.5004998443
## 558  0.40787701 0.291228070 0.1345801432 0.5004998443
## 105  0.40699894 0.292105263 0.1338947309 0.5004998443
## 1428 0.40612204 0.292982456 0.1332130032 0.5004998443
## 1355 0.40524631 0.293859649 0.1325349352 0.5004998443
## 608  0.40437174 0.294736842 0.1318605025 0.5004998443
## 808  0.40349833 0.295614035 0.1311896806 0.5004998443
## 317  0.40567265 0.295614035 0.1319589180 0.5048022423
## 1260 0.40480082 0.296491228 0.1312898469 0.5048022423
## 1028 0.40393013 0.297368421 0.1306243417 0.5048022423
## 1523 0.40306058 0.298245614 0.1299623787 0.5048022423
## 102  0.40523591 0.298245614 0.1307256299 0.5091222880
## 76   0.40741097 0.298245614 0.1314883863 0.5134599813
## 820  0.40654342 0.299122807 0.1308263154 0.5134599813
## 1230 0.40567700 0.300000000 0.1301677460 0.5134599813
## 943  0.40481170 0.300877193 0.1295126551 0.5134599813
## 800  0.40394751 0.301754386 0.1288610197 0.5134599813
## 29   0.40308443 0.302631579 0.1282128172 0.5134599813
## 83   0.40526146 0.302631579 0.1289661014 0.5178153223
## 202  0.40743828 0.302631579 0.1297189203 0.5221883110
## 695  0.40961491 0.302631579 0.1304712675 0.5265789474
## 281  0.41179135 0.302631579 0.1312231363 0.5309872314
## 475  0.41093117 0.303508772 0.1305712546 0.5309872314
## 1266 0.41007210 0.304385965 0.1299227731 0.5309872314
## 1521 0.40921411 0.305263158 0.1292776695 0.5309872314
## 459  0.40835720 0.306140351 0.1286359219 0.5309872314
## 1298 0.40750138 0.307017544 0.1279975086 0.5309872314
## 169  0.40664663 0.307894737 0.1273624078 0.5309872314
## 1277 0.40579294 0.308771930 0.1267305982 0.5309872314
## 103  0.40494032 0.309649123 0.1261020584 0.5309872314
## 1299 0.40408875 0.310526316 0.1254767674 0.5309872314
## 461  0.40323823 0.311403509 0.1248547042 0.5309872314
## 116  0.40238876 0.312280702 0.1242358480 0.5309872314
## 301  0.40457014 0.312280702 0.1249681302 0.5354131631
## 321  0.40372218 0.313157895 0.1243507422 0.5354131631
## 504  0.40287524 0.314035088 0.1237365232 0.5354131631
## 791  0.40505747 0.314035088 0.1244649848 0.5398567424
## 1267 0.40421204 0.314912281 0.1238522103 0.5398567424
## 347  0.40639466 0.314912281 0.1245785813 0.5443179695
## 555  0.40555073 0.315789474 0.1239672449 0.5443179695
## 1241 0.40470781 0.316666667 0.1233590234 0.5443179695
## 942  0.40386591 0.317543860 0.1227538970 0.5443179695
## 152  0.40520951 0.318421053 0.1228710982 0.5487968442
## 501  0.40520951 0.318421053 0.1228710982 0.5487968442
## 447  0.40437010 0.319298246 0.1222704292 0.5487968442
## 1020 0.40353169 0.320175439 0.1216727999 0.5487968442
## 1085 0.40269426 0.321052632 0.1210781911 0.5487968442
## 1492 0.40185782 0.321929825 0.1204865839 0.5487968442
## 669  0.40102237 0.322807018 0.1198979592 0.5487968442
## 535  0.40018788 0.323684211 0.1193122984 0.5487968442
## 115  0.39935437 0.324561404 0.1187295829 0.5487968442
## 1373 0.39852182 0.325438596 0.1181497942 0.5487968442
## 673  0.39769024 0.326315789 0.1175729141 0.5487968442
## 312  0.39685960 0.327192982 0.1169989244 0.5487968442
## 297  0.39904898 0.327192982 0.1177012790 0.5532933666
## 382  0.40123840 0.327192982 0.1184033296 0.5578075366
## 1057 0.40342787 0.327192982 0.1191050697 0.5623393543
## 87   0.40561741 0.327192982 0.1198064929 0.5668888197
## 645  0.40478973 0.328070175 0.1192288734 0.5668888197
## 751  0.40396299 0.328947368 0.1186541207 0.5668888197
## 1252 0.40313720 0.329824561 0.1180822169 0.5668888197
## 729  0.40231234 0.330701754 0.1175131446 0.5668888197
## 45   0.40148842 0.331578947 0.1169468862 0.5668888197
## 1243 0.40066541 0.332456140 0.1163834244 0.5668888197
## 410  0.39984333 0.333333333 0.1158227420 0.5668888197
## 85   0.40203656 0.333333333 0.1165126464 0.5714559327
## 516  0.40121591 0.334210526 0.1159531390 0.5714559327
## 268  0.40039617 0.335087719 0.1153963801 0.5714559327
## 495  0.39957734 0.335964912 0.1148423528 0.5714559327
## 12   0.40177227 0.335964912 0.1155272413 0.5760406934
## 32   0.40095486 0.336842105 0.1149743571 0.5760406934
## 732  0.40013836 0.337719298 0.1144241744 0.5760406934
## 78   0.40233450 0.337719298 0.1151056660 0.5806431018
## 79   0.40453081 0.337719298 0.1157868952 0.5852631579
## 823  0.40371627 0.338596491 0.1152362849 0.5852631579
## 643  0.40290261 0.339473684 0.1146883492 0.5852631579
## 890  0.40510020 0.339473684 0.1153662191 0.5899008616
## 198  0.40729800 0.339473684 0.1160438270 0.5945562130
## 257  0.40949602 0.339473684 0.1167211668 0.5992292121
## 801  0.40868490 0.340350877 0.1161712853 0.5992292121
## 1419 0.40787466 0.341228070 0.1156240549 0.5992292121
## 296  0.41007404 0.341228070 0.1162980788 0.6039198588
## 1130 0.40926524 0.342105263 0.1157519669 0.6039198588
## 1261 0.40845732 0.342982456 0.1152084772 0.6039198588
## 921  0.40765025 0.343859649 0.1146675940 0.6039198588
## 1490 0.40904597 0.344736842 0.1147970328 0.6086281532
## 1507 0.40904597 0.344736842 0.1147970328 0.6086281532
## 726  0.40824120 0.345614035 0.1142598168 0.6086281532
## 653  0.40743729 0.346491228 0.1137251639 0.6086281532
## 510  0.40663422 0.347368421 0.1131930588 0.6086281532
## 175  0.40883816 0.347368421 0.1138560687 0.6133540953
## 67   0.41104242 0.347368421 0.1145188415 0.6180976850
## 1210 0.41024136 0.348245614 0.1139863050 0.6180976850
## 379  0.41244654 0.348245614 0.1146473614 0.6228589225
## 56   0.41465207 0.348245614 0.1153081749 0.6276378075
## 253  0.41685796 0.348245614 0.1159687400 0.6324343403
## 780  0.41605954 0.349122807 0.1154343324 0.6324343403
## 633  0.41526195 0.350000000 0.1149024413 0.6324343403
## 63   0.41446521 0.350877193 0.1143730521 0.6324343403
## 630  0.41366929 0.351754386 0.1138461501 0.6324343403
## 361  0.41287419 0.352631579 0.1133217208 0.6324343403
## 1481 0.41207992 0.353508772 0.1127997497 0.6324343403
## 860  0.41128647 0.354385965 0.1122802224 0.6324343403
## 289  0.41349701 0.354385965 0.1129304163 0.6372485207
## 1245 0.41270498 0.355263158 0.1124118841 0.6372485207
## 271  0.41191376 0.356140351 0.1118957702 0.6372485207
## 658  0.41112335 0.357017544 0.1113820604 0.6372485207
## 345  0.41333618 0.357017544 0.1120277549 0.6420803488
## 1032 0.41554946 0.357017544 0.1126732403 0.6469298246
## 772  0.41476110 0.357894737 0.1121590840 0.6469298246
## 362  0.41397354 0.358771930 0.1116473095 0.6469298246
## 223  0.41318677 0.359649123 0.1111379031 0.6469298246
## 22   0.41240079 0.360526316 0.1106308510 0.6469298246
## 1038 0.41461708 0.360526316 0.1112704963 0.6517969480
## 1460 0.41383252 0.361403509 0.1107643854 0.6517969480
## 214  0.41304875 0.362280702 0.1102606045 0.6517969480
## 1167 0.41226575 0.363157895 0.1097591404 0.6517969480
## 391  0.41148352 0.364035088 0.1092599798 0.6517969480
## 367  0.41070207 0.364912281 0.1087631095 0.6517969480
## 1429 0.40992137 0.365789474 0.1082685166 0.6517969480
## 390  0.40914144 0.366666667 0.1077761880 0.6517969480
## 521  0.40836227 0.367543860 0.1072861109 0.6517969480
## 527  0.40758384 0.368421053 0.1067982724 0.6517969480
## 445  0.40680617 0.369298246 0.1063126599 0.6517969480
## 759  0.40602924 0.370175439 0.1058292608 0.6517969480
## 1113 0.40525304 0.371052632 0.1053480625 0.6517969480
## 1189 0.40447759 0.371929825 0.1048690526 0.6517969480
## 354  0.40370286 0.372807018 0.1043922188 0.6517969480
## 381  0.40592877 0.372807018 0.1050123802 0.6566817191
## 360  0.40515543 0.373684211 0.1045363524 0.6566817191
## 444  0.40438282 0.374561404 0.1040624788 0.6566817191
## 599  0.40361092 0.375438596 0.1035907474 0.6566817191
## 1251 0.40283975 0.376315789 0.1031211461 0.6566817191
## 872  0.40206928 0.377192982 0.1026536630 0.6566817191
## 917  0.40129952 0.378070175 0.1021882863 0.6566817191
## 1480 0.40053047 0.378947368 0.1017250041 0.6566817191
## 909  0.39976212 0.379824561 0.1012638049 0.6566817191
## 1459 0.39899446 0.380701754 0.1008046769 0.6566817191
## 603  0.39822750 0.381578947 0.1003476086 0.6566817191
## 326  0.39746122 0.382456140 0.0998925886 0.6566817191
## 1339 0.39669563 0.383333333 0.0994396055 0.6566817191
## 363  0.39593072 0.384210526 0.0989886481 0.6566817191
## 176  0.39816596 0.384210526 0.0995912943 0.6615841379
## 315  0.40040189 0.384210526 0.1001938628 0.6665042043
## 615  0.39963903 0.385087719 0.0997422871 0.6665042043
## 623  0.39887683 0.385964912 0.0992927199 0.6665042043
## 140  0.40111485 0.385964912 0.0998925886 0.6714419184
## 1353 0.40035403 0.386842105 0.0994437144 0.6714419184
## 818  0.39959387 0.387719298 0.0989968293 0.6714419184
## 727  0.39883438 0.388596491 0.0985519223 0.6714419184
## 372  0.40107523 0.388596491 0.0991478192 0.6763972802
## 742  0.40031710 0.389473684 0.0987035873 0.6763972802
## 1452 0.39955963 0.390350877 0.0982613144 0.6763972802
## 1518 0.39880282 0.391228070 0.0978209899 0.6763972802
## 676  0.39804666 0.392105263 0.0973826032 0.6763972802
## 533  0.39729114 0.392982456 0.0969461436 0.6763972802
## 771  0.39653627 0.393859649 0.0965116007 0.6763972802
## 1096 0.39878217 0.393859649 0.0970997369 0.6813702896
## 343  0.39802866 0.394736842 0.0966658278 0.6813702896
## 1479 0.39727578 0.395614035 0.0962338172 0.6813702896
## 411  0.39652354 0.396491228 0.0958036947 0.6813702896
## 914  0.39577193 0.397368421 0.0953754503 0.6813702896
## 1162 0.39502094 0.398245614 0.0949490736 0.6813702896
## 1204 0.39727130 0.398245614 0.0955308420 0.6863609467
## 747  0.39652166 0.399122807 0.0951050675 0.6863609467
## 5    0.39877361 0.399122807 0.0956855482 0.6913692515
## 1335 0.39802534 0.400000000 0.0952603749 0.6913692515
## 862  0.39727769 0.400877193 0.0948370445 0.6913692515
## 1268 0.39653065 0.401754386 0.0944155470 0.6913692515
## 1418 0.39878571 0.401754386 0.0949922628 0.6963952040
## 92   0.40104167 0.401754386 0.0955689479 0.7014388041
## 60   0.40329854 0.401754386 0.0961455972 0.7065000519
## 502  0.40255439 0.402631579 0.0957222223 0.7065000519
## 9    0.40481295 0.402631579 0.0962976048 0.7115789474
## 107  0.40407019 0.403508772 0.0958748276 0.7115789474
## 670  0.40332804 0.404385965 0.0954538638 0.7115789474
## 1379 0.40258649 0.405263158 0.0950347039 0.7115789474
## 201  0.40484835 0.405263158 0.0956063938 0.7166754905
## 1263 0.40410819 0.406140351 0.0951878163 0.7166754905
## 1187 0.40336863 0.407017544 0.0947710260 0.7166754905
## 309  0.40262967 0.407894737 0.0943560135 0.7166754905
## 602  0.40189130 0.408771930 0.0939427694 0.7166754905
## 750  0.40115351 0.409649123 0.0935312844 0.7166754905
## 408  0.40041632 0.410526316 0.0931215492 0.7166754905
## 636  0.39967971 0.411403509 0.0927135546 0.7166754905
## 667  0.39894367 0.412280702 0.0923072915 0.7166754905
## 672  0.39820821 0.413157895 0.0919027507 0.7166754905
## 1157 0.39747333 0.414035088 0.0914999233 0.7166754905
## 1410 0.39974416 0.414035088 0.0920596037 0.7217896813
## 121  0.39901065 0.414912281 0.0916572965 0.7217896813
## 929  0.39827771 0.415789474 0.0912566870 0.7217896813
## 592  0.40055123 0.415789474 0.0918140056 0.7269215198
## 74   0.39981967 0.416666667 0.0914139093 0.7269215198
## 1352 0.39908867 0.417543860 0.0910154955 0.7269215198
## 731  0.39835823 0.418421053 0.0906187556 0.7269215198
## 14   0.39762835 0.419298246 0.0902236807 0.7269215198
## 1019 0.39689901 0.420175439 0.0898302624 0.7269215198
## 1340 0.39617022 0.421052632 0.0894384919 0.7269215198
## 180  0.39844981 0.421052632 0.0899888113 0.7320710059
## 1405 0.39772241 0.421929825 0.0895975220 0.7320710059
## 550  0.39699555 0.422807018 0.0892078660 0.7320710059
## 861  0.39626922 0.423684211 0.0888198347 0.7320710059
## 2    0.39554343 0.424561404 0.0884334199 0.7320710059
## 1205 0.39782755 0.424561404 0.0889791500 0.7372381397
## 1394 0.39710315 0.425438596 0.0885931978 0.7372381397
## 248  0.39938930 0.425438596 0.0891378103 0.7424229212
## 552  0.39866629 0.426315789 0.0887523206 0.7424229212
## 221  0.39794381 0.427192982 0.0883684272 0.7424229212
## 605  0.39722185 0.428070175 0.0879861219 0.7424229212
## 158  0.39650042 0.428947368 0.0876053966 0.7424229212
## 911  0.39577951 0.429824561 0.0872262432 0.7424229212
## 1015 0.39505911 0.430701754 0.0868486538 0.7424229212
## 1465 0.39433923 0.431578947 0.0864726203 0.7424229212
## 946  0.39361985 0.432456140 0.0860981348 0.7424229212
## 1208 0.39290098 0.433333333 0.0857251895 0.7424229212
## 1310 0.39519622 0.433333333 0.0862596797 0.7476253504
## 1275 0.39447874 0.434210526 0.0858871509 0.7476253504
## 120  0.39376177 0.435087719 0.0855161490 0.7476253504
## 993  0.39304529 0.435964912 0.0851466662 0.7476253504
## 582  0.39232930 0.436842105 0.0847786949 0.7476253504
## 1257 0.39161381 0.437719298 0.0844122274 0.7476253504
## 1431 0.39089881 0.438596491 0.0840472562 0.7476253504
## 1280 0.39018429 0.439473684 0.0836837737 0.7476253504
## 1279 0.38947025 0.440350877 0.0833217725 0.7476253504
## 1225 0.38875669 0.441228070 0.0829612450 0.7476253504
## 713  0.38804361 0.442105263 0.0826021840 0.7476253504
## 989  0.38733100 0.442982456 0.0822445820 0.7476253504
## 715  0.38661886 0.443859649 0.0818884318 0.7476253504
## 263  0.38590718 0.444736842 0.0815337261 0.7476253504
## 48   0.38519597 0.445614035 0.0811804576 0.7476253504
## 1491 0.38448522 0.446491228 0.0808286192 0.7476253504
## 567  0.38377492 0.447368421 0.0804782038 0.7476253504
## 1425 0.38306507 0.448245614 0.0801292043 0.7476253504
## 311  0.38235568 0.449122807 0.0797816136 0.7476253504
## 1003 0.38466862 0.449122807 0.0802964671 0.7528454272
## 485  0.38698298 0.449122807 0.0808114188 0.7580831517
## 1347 0.38627591 0.450000000 0.0804630882 0.7580831517
## 215  0.38556928 0.450877193 0.0801161568 0.7580831517
## 1217 0.38486310 0.451754386 0.0797706178 0.7580831517
## 52   0.38415736 0.452631579 0.0794264643 0.7580831517
## 586  0.38647697 0.452631579 0.0799372563 0.7633385238
## 265  0.38577262 0.453508772 0.0795934237 0.7633385238
## 1510 0.38809468 0.453508772 0.0801032608 0.7686115437
## 799  0.38739174 0.454385965 0.0797597495 0.7686115437
## 386  0.38971628 0.454385965 0.0802686346 0.7739022111
## 1181 0.38901476 0.455263158 0.0799254450 0.7739022111
## 1094 0.39134180 0.455263158 0.0804333813 0.7792105263
## 1175 0.39064171 0.456140351 0.0800905137 0.7792105263
## 757  0.38994205 0.457017544 0.0797490063 0.7792105263
## 6    0.38924282 0.457894737 0.0794088527 0.7792105263
## 1446 0.38854402 0.458771930 0.0790700461 0.7792105263
## 897  0.39087662 0.458771930 0.0795739291 0.7845364892
## 941  0.39017925 0.459649123 0.0792354314 0.7845364892
## 598  0.38948231 0.460526316 0.0788982698 0.7845364892
## 761  0.38878579 0.461403509 0.0785624378 0.7845364892
## 239  0.38808969 0.462280702 0.0782279290 0.7845364892
## 1440 0.38739401 0.463157895 0.0778947368 0.7845364892
## 976  0.38669874 0.464035088 0.0775628551 0.7845364892
## 796  0.38600388 0.464912281 0.0772322773 0.7845364892
## 613  0.38530943 0.465789474 0.0769029973 0.7845364892
## 693  0.38461538 0.466666667 0.0765750087 0.7845364892
## 1106 0.38392174 0.467543860 0.0762483053 0.7845364892
## 1066 0.38322849 0.468421053 0.0759228810 0.7845364892
## 963  0.38253564 0.469298246 0.0755987295 0.7845364892
## 42   0.38488219 0.469298246 0.0760905042 0.7898800997
## 401  0.38723045 0.469298246 0.0765824067 0.7952413578
## 1178 0.38654009 0.470175439 0.0762575167 0.7952413578
## 847  0.38585012 0.471052632 0.0759338915 0.7952413578
## 1101 0.38516055 0.471929825 0.0756115250 0.7952413578
## 1104 0.38447137 0.472807018 0.0752904112 0.7952413578
## 525  0.38378257 0.473684211 0.0749705442 0.7952413578
## 1319 0.38309415 0.474561404 0.0746519180 0.7952413578
## 994  0.38240611 0.475438596 0.0743345267 0.7952413578
## 651  0.38171845 0.476315789 0.0740183643 0.7952413578
## 155  0.38103116 0.477192982 0.0737034251 0.7952413578
## 1206 0.38034425 0.478070175 0.0733897033 0.7952413578
## 142  0.37965769 0.478947368 0.0730771930 0.7952413578
## 1100 0.37897151 0.479824561 0.0727658885 0.7952413578
## 62   0.37828568 0.480701754 0.0724557841 0.7952413578
## 549  0.37760022 0.481578947 0.0721468742 0.7952413578
## 328  0.37691511 0.482456140 0.0718391530 0.7952413578
## 509  0.37623035 0.483333333 0.0715326150 0.7952413578
## 492  0.37554594 0.484210526 0.0712272546 0.7952413578
## 1119 0.37486187 0.485087719 0.0709230662 0.7952413578
## 1    0.37417815 0.485964912 0.0706200443 0.7952413578
## 1469 0.37349477 0.486842105 0.0703181835 0.7952413578
## 218  0.37281173 0.487719298 0.0700174782 0.7952413578
## 984  0.37212902 0.488596491 0.0697179231 0.7952413578
## 496  0.37144665 0.489473684 0.0694195127 0.7952413578
## 217  0.37382183 0.489473684 0.0698890775 0.8006202637
## 1430 0.37314092 0.490350877 0.0695908540 0.8006202637
## 352  0.37551918 0.490350877 0.0700596425 0.8060168172
## 456  0.37483974 0.491228070 0.0697616068 0.8060168172
## 64   0.37416062 0.492105263 0.0694647037 0.8060168172
## 596  0.37348183 0.492982456 0.0691689281 0.8060168172
## 1191 0.37280337 0.493859649 0.0688742747 0.8060168172
## 1242 0.37212522 0.494736842 0.0685807382 0.8060168172
## 1214 0.37144739 0.495614035 0.0682883135 0.8060168172
## 604  0.37076987 0.496491228 0.0679969955 0.8060168172
## 21   0.37009267 0.497368421 0.0677067789 0.8060168172
## 1522 0.36941577 0.498245614 0.0674176587 0.8060168172
## 323  0.36873918 0.499122807 0.0671296298 0.8060168172
## 1050 0.36806289 0.500000000 0.0668426871 0.8060168172
## 131  0.37045598 0.500000000 0.0673013479 0.8114310184
## 98   0.37285116 0.500000000 0.0677601999 0.8168628672
## 1423 0.37217755 0.500877193 0.0674724912 0.8168628672
## 17   0.37457603 0.500877193 0.0679306096 0.8223123637
## 1511 0.37697663 0.500877193 0.0683889124 0.8277795079
## 551  0.37630577 0.501754386 0.0681004488 0.8277795079
## 247  0.37870974 0.501754386 0.0685580174 0.8332642998
## 937  0.37804041 0.502631579 0.0682697202 0.8332642998
## 213  0.37737140 0.503508772 0.0679824988 0.8332642998
## 204  0.37670268 0.504385965 0.0676963483 0.8332642998
## 980  0.37603427 0.505263158 0.0674112640 0.8332642998
## 915  0.37536616 0.506140351 0.0671272407 0.8332642998
## 906  0.37469835 0.507017544 0.0668442739 0.8332642998
## 910  0.37403083 0.507894737 0.0665623585 0.8332642998
## 709  0.37336360 0.508771930 0.0662814899 0.8332642998
## 109  0.37269665 0.509649123 0.0660016634 0.8332642998
## 325  0.37202999 0.510526316 0.0657228740 0.8332642998
## 957  0.37136362 0.511403509 0.0654451172 0.8332642998
## 830  0.37069752 0.512280702 0.0651683883 0.8332642998
## 259  0.37311883 0.512280702 0.0656153321 0.8387667393
## 983  0.37245429 0.513157895 0.0653387381 0.8387667393
## 1259 0.37179004 0.514035088 0.0650631646 0.8387667393
## 1143 0.37112606 0.514912281 0.0647886070 0.8387667393
## 44   0.37355357 0.514912281 0.0652330952 0.8442868265
## 206  0.37289117 0.515789474 0.0649586679 0.8442868265
## 1072 0.37222904 0.516666667 0.0646852491 0.8442868265
## 1529 0.37156718 0.517543860 0.0644128343 0.8442868265
## 850  0.37090559 0.518421053 0.0641414189 0.8442868265
## 924  0.37024426 0.519298246 0.0638709985 0.8442868265
## 207  0.36958320 0.520175439 0.0636015686 0.8442868265
## 1463 0.36892239 0.521052632 0.0633331247 0.8442868265
## 91   0.37136158 0.521052632 0.0637716978 0.8498245614
## 702  0.37070237 0.521929825 0.0635033692 0.8498245614
## 252  0.37314536 0.521929825 0.0639412863 0.8553799439
## 1415 0.37559083 0.521929825 0.0643794097 0.8609529742
## 1209 0.37493461 0.522807018 0.0641103366 0.8609529742
## 566  0.37427866 0.523684211 0.0638422416 0.8609529742
## 519  0.37362297 0.524561404 0.0635751206 0.8609529742
## 1382 0.37296753 0.525438596 0.0633089691 0.8609529742
## 101  0.37231235 0.526315789 0.0630437828 0.8609529742
## 1399 0.37165741 0.527192982 0.0627795575 0.8609529742
## 1516 0.37100273 0.528070175 0.0625162890 0.8609529742
## 30   0.37034829 0.528947368 0.0622539729 0.8609529742
## 520  0.36969409 0.529824561 0.0619926051 0.8609529742
## 1503 0.37215466 0.529824561 0.0624232617 0.8665436520
## 111  0.37150212 0.530701754 0.0621619946 0.8665436520
## 1328 0.37084983 0.531578947 0.0619016691 0.8665436520
## 779  0.37019777 0.532456140 0.0616422811 0.8665436520
## 1334 0.36954595 0.533333333 0.0613838264 0.8665436520
## 597  0.36889436 0.534210526 0.0611263011 0.8665436520
## 364  0.36824300 0.535087719 0.0608697009 0.8665436520
## 524  0.36759187 0.535964912 0.0606140219 0.8665436520
## 416  0.36694097 0.536842105 0.0603592600 0.8665436520
## 31   0.36629028 0.537719298 0.0601054111 0.8665436520
## 494  0.36563982 0.538596491 0.0598524714 0.8665436520
## 1099 0.36498957 0.539473684 0.0596004368 0.8665436520
## 887  0.36746875 0.539473684 0.0600221433 0.8721519776
## 365  0.36682020 0.540350877 0.0597701869 0.8721519776
## 806  0.36617186 0.541228070 0.0595191294 0.8721519776
## 822  0.36552374 0.542105263 0.0592689670 0.8721519776
## 889  0.36801017 0.542105263 0.0596884438 0.8777779508
## 1163 0.36736377 0.542982456 0.0594383562 0.8777779508
## 833  0.36671757 0.543859649 0.0591891575 0.8777779508
## 1372 0.36607158 0.544736842 0.0589408438 0.8777779508
## 220  0.36542580 0.545614035 0.0586934115 0.8777779508
## 1081 0.36478022 0.546491228 0.0584468565 0.8777779508
## 25   0.36413484 0.547368421 0.0582011751 0.8777779508
## 664  0.36348966 0.548245614 0.0579563636 0.8777779508
## 27   0.36284468 0.549122807 0.0577124182 0.8777779508
## 935  0.36219989 0.550000000 0.0574693352 0.8777779508
## 1292 0.36155528 0.550877193 0.0572271108 0.8777779508
## 707  0.36091086 0.551754386 0.0569857413 0.8777779508
## 1042 0.36341711 0.551754386 0.0573965779 0.8834215717
## 1080 0.36277445 0.552631579 0.0571552632 0.8834215717
## 1147 0.36213198 0.553508772 0.0569147977 0.8834215717
## 992  0.36148969 0.554385965 0.0566751779 0.8834215717
## 1132 0.36084758 0.555263158 0.0564364000 0.8834215717
## 825  0.36020564 0.556140351 0.0561984605 0.8834215717
## 828  0.35956389 0.557017544 0.0559613558 0.8834215717
## 1012 0.35892230 0.557894737 0.0557250824 0.8834215717
## 424  0.35828089 0.558771930 0.0554896366 0.8834215717
## 561  0.35763964 0.559649123 0.0552550150 0.8834215717
## 1048 0.35699855 0.560526316 0.0550212141 0.8834215717
## 1276 0.35635763 0.561403509 0.0547882303 0.8834215717
## 665  0.35571686 0.562280702 0.0545560601 0.8834215717
## 974  0.35507625 0.563157895 0.0543247002 0.8834215717
## 250  0.35760650 0.563157895 0.0547255707 0.8890828402
## 1434 0.35696770 0.564035088 0.0544942435 0.8890828402
## 226  0.35632905 0.564912281 0.0542637211 0.8890828402
## 1077 0.35569056 0.565789474 0.0540340003 0.8890828402
## 661  0.35505221 0.566666667 0.0538050777 0.8890828402
## 437  0.35759233 0.566666667 0.0542031257 0.8947617565
## 967  0.35695583 0.567543860 0.0539742314 0.8947617565
## 730  0.35631947 0.568421053 0.0537461300 0.8947617565
## 196  0.35886624 0.568421053 0.0541429102 0.9004583204
## 1348 0.35823175 0.569298246 0.0539148366 0.9004583204
## 660  0.35759740 0.570175439 0.0536875509 0.9004583204
## 798  0.35696320 0.571052632 0.0534610497 0.9004583204
## 691  0.35632915 0.571929825 0.0532353298 0.9004583204
## 814  0.35569523 0.572807018 0.0530103880 0.9004583204
## 1172 0.35506146 0.573684211 0.0527862208 0.9004583204
## 1165 0.35442782 0.574561404 0.0525628252 0.9004583204
## 1272 0.35379431 0.575438596 0.0523401978 0.9004583204
## 812  0.35316094 0.576315789 0.0521183355 0.9004583204
## 1274 0.35252769 0.577192982 0.0518972350 0.9004583204
## 143  0.35509532 0.577192982 0.0522867387 0.9061725319
## 824  0.35446399 0.578070175 0.0520656517 0.9061725319
## 663  0.35383278 0.578947368 0.0518453218 0.9061725319
## 1270 0.35320170 0.579824561 0.0516257457 0.9061725319
## 881  0.35257074 0.580701754 0.0514069205 0.9061725319
## 1351 0.35193990 0.581578947 0.0511888428 0.9061725319
## 197  0.35452007 0.581578947 0.0515749115 0.9119043912
## 1271 0.35389118 0.582456140 0.0513568420 0.9119043912
## 829  0.35326241 0.583333333 0.0511395155 0.9119043912
## 626  0.35263376 0.584210526 0.0509229289 0.9119043912
## 1332 0.35200523 0.585087719 0.0507070791 0.9119043912
## 275  0.35137681 0.585964912 0.0504919631 0.9119043912
## 1169 0.35074849 0.586842105 0.0502775779 0.9119043912
## 1171 0.35012029 0.587719298 0.0500639204 0.9119043912
## 1349 0.34949218 0.588596491 0.0498509876 0.9119043912
## 826  0.34886418 0.589473684 0.0496387766 0.9119043912
## 1142 0.34823628 0.590350877 0.0494272844 0.9119043912
## 1170 0.34760847 0.591228070 0.0492165081 0.9119043912
## 1173 0.34698075 0.592105263 0.0490064447 0.9119043912
## 1067 0.34635312 0.592982456 0.0487970912 0.9119043912
## 254  0.34896141 0.592982456 0.0491739911 0.9176538981
## 449  0.34833580 0.593859649 0.0489646288 0.9176538981
## 227  0.34771028 0.594736842 0.0487559721 0.9176538981
## 225  0.34708486 0.595614035 0.0485480181 0.9176538981
## 655  0.34645952 0.596491228 0.0483407641 0.9176538981
## 47   0.34583426 0.597368421 0.0481342071 0.9176538981
## 827  0.34520908 0.598245614 0.0479283443 0.9176538981
## 335  0.34458397 0.599122807 0.0477231728 0.9176538981
## 1013 0.34395894 0.600000000 0.0475186899 0.9176538981
## 692  0.34333398 0.600877193 0.0473148928 0.9176538981
## 1168 0.34270909 0.601754386 0.0471117786 0.9176538981
## 933  0.34208427 0.602631579 0.0469093446 0.9176538981
## 557  0.34145950 0.603508772 0.0467075881 0.9176538981
## 1121 0.34083480 0.604385965 0.0465065063 0.9176538981
## 554  0.34021015 0.605263158 0.0463060964 0.9176538981
## 556  0.33958556 0.606140351 0.0461063558 0.9176538981
## 1369 0.33896101 0.607017544 0.0459072818 0.9176538981
## 619  0.33833652 0.607894737 0.0457088716 0.9176538981
## 880  0.33771206 0.608771930 0.0455111226 0.9176538981
## 1059 0.33708766 0.609649123 0.0453140320 0.9176538981
## 439  0.33646329 0.610526316 0.0451175974 0.9176538981
## 560  0.33583895 0.611403509 0.0449218160 0.9176538981
## 1466 0.33521465 0.612280702 0.0447266852 0.9176538981
## 559  0.33459038 0.613157895 0.0445322023 0.9176538981
## 1123 0.33396614 0.614035088 0.0443383649 0.9176538981
## 971  0.33334192 0.614912281 0.0441451702 0.9176538981
## 662  0.33271772 0.615789474 0.0439526158 0.9176538981
## 893  0.33538287 0.615789474 0.0443116792 0.9234210526
## 1125 0.33476083 0.616666667 0.0441190844 0.9234210526
## 303  0.33743242 0.616666667 0.0444777808 0.9292058549
## 682  0.33681257 0.617543860 0.0442851468 0.9292058549
## 1496 0.33619276 0.618421053 0.0440931481 0.9292058549
## 1138 0.33557297 0.619298246 0.0439017822 0.9292058549
## 908  0.33495320 0.620175439 0.0437110466 0.9292058549
## 831  0.33433345 0.621052632 0.0435209387 0.9292058549
## 427  0.33371372 0.621929825 0.0433314561 0.9292058549
## 859  0.33309400 0.622807018 0.0431425963 0.9292058549
## 324  0.33247429 0.623684211 0.0429543567 0.9292058549
## 41   0.33185459 0.624561404 0.0427667350 0.9292058549
## 873  0.33123489 0.625438596 0.0425797287 0.9292058549
## 681  0.33061520 0.626315789 0.0423933354 0.9292058549
## 666  0.32999550 0.627192982 0.0422075526 0.9292058549
## 1358 0.32937580 0.628070175 0.0420223780 0.9292058549
## 721  0.32875609 0.628947368 0.0418378090 0.9292058549
## 553  0.32813637 0.629824561 0.0416538434 0.9292058549
## 273  0.32751664 0.630701754 0.0414704788 0.9292058549
## 1083 0.32689689 0.631578947 0.0412877127 0.9292058549
## 412  0.32627712 0.632456140 0.0411055429 0.9292058549
## 722  0.32565732 0.633333333 0.0409239669 0.9292058549
## 3    0.32503750 0.634210526 0.0407429826 0.9292058549
## 1014 0.32441765 0.635087719 0.0405625874 0.9292058549
## 777  0.32379777 0.635964912 0.0403827792 0.9292058549
## 454  0.32317786 0.636842105 0.0402035556 0.9292058549
## 720  0.32255790 0.637719298 0.0400249144 0.9292058549
## 926  0.32193791 0.638596491 0.0398468532 0.9292058549
## 1047 0.32131786 0.639473684 0.0396693697 0.9292058549
## 899  0.32405345 0.639473684 0.0400112692 0.9350083048
## 327  0.32343578 0.640350877 0.0398337212 0.9350083048
## 164  0.32281807 0.641228070 0.0396567478 0.9350083048
## 1401 0.32220031 0.642105263 0.0394803467 0.9350083048
## 958  0.32158250 0.642982456 0.0393045158 0.9350083048
## 1345 0.32096464 0.643859649 0.0391292527 0.9350083048
## 896  0.32371740 0.643859649 0.0394682980 0.9408284024
## 1329 0.32310197 0.644736842 0.0392929679 0.9408284024
## 809  0.32248650 0.645614035 0.0391182025 0.9408284024
## 627  0.32187097 0.646491228 0.0389439997 0.9408284024
## 1323 0.32125539 0.647368421 0.0387703572 0.9408284024
## 973  0.32063975 0.648245614 0.0385972730 0.9408284024
## 581  0.32002406 0.649122807 0.0384247449 0.9408284024
## 1322 0.31940829 0.650000000 0.0382527707 0.9408284024
## 883  0.31879246 0.650877193 0.0380813482 0.9408284024
## 970  0.31817656 0.651754386 0.0379104755 0.9408284024
## 975  0.31756059 0.652631579 0.0377401502 0.9408284024
## 930  0.31694454 0.653508772 0.0375703704 0.9408284024
## 647  0.31632841 0.654385965 0.0374011339 0.9408284024
## 1514 0.31571220 0.655263158 0.0372324386 0.9408284024
## 1400 0.31509590 0.656140351 0.0370642825 0.9408284024
## 570  0.31447950 0.657017544 0.0368966635 0.9408284024
## 934  0.31386302 0.657894737 0.0367295795 0.9408284024
## 765  0.31324644 0.658771930 0.0365630284 0.9408284024
## 1219 0.31262976 0.659649123 0.0363970083 0.9408284024
## 452  0.31201298 0.660526316 0.0362315171 0.9408284024
## 754  0.31139609 0.661403509 0.0360665528 0.9408284024
## 1391 0.31077909 0.662280702 0.0359021134 0.9408284024
## 1366 0.31016197 0.663157895 0.0357381968 0.9408284024
## 35   0.30954474 0.664035088 0.0355748011 0.9408284024
## 1346 0.30892739 0.664912281 0.0354119242 0.9408284024
## 610  0.30830991 0.665789474 0.0352495643 0.9408284024
## 418  0.30769231 0.666666667 0.0350877193 0.9408284024
## 1061 0.30707457 0.667543860 0.0349263873 0.9408284024
## 1247 0.30645670 0.668421053 0.0347655663 0.9408284024
## 838  0.30583870 0.669298246 0.0346052544 0.9408284024
## 972  0.30522055 0.670175439 0.0344454497 0.9408284024
## 450  0.30460225 0.671052632 0.0342861501 0.9408284024
## 526  0.30398381 0.671929825 0.0341273540 0.9408284024
## 755  0.30336522 0.672807018 0.0339690592 0.9408284024
## 1437 0.30274647 0.673684211 0.0338112639 0.9408284024
## 1129 0.30212756 0.674561404 0.0336539663 0.9408284024
## 505  0.30150848 0.675438596 0.0334971645 0.9408284024
## 477  0.30436340 0.675438596 0.0338145721 0.9466661476
## 1152 0.30374707 0.676315789 0.0336576763 0.9466661476
## 37   0.30313058 0.677192982 0.0335012737 0.9466661476
## 1010 0.30251393 0.678070175 0.0333453624 0.9466661476
## 463  0.30189712 0.678947368 0.0331899406 0.9466661476
## 932  0.30128013 0.679824561 0.0330350065 0.9466661476
## 901  0.30066297 0.680701754 0.0328805582 0.9466661476
## 489  0.30004564 0.681578947 0.0327265939 0.9466661476
## 919  0.29942813 0.682456140 0.0325731117 0.9466661476
## 231  0.30231292 0.682456140 0.0328862100 0.9525215405
## 1135 0.30169827 0.683333333 0.0327326305 0.9525215405
## 1182 0.30108344 0.684210526 0.0325795307 0.9525215405
## 579  0.30046843 0.685087719 0.0324269088 0.9525215405
## 1131 0.29985324 0.685964912 0.0322747631 0.9525215405
## 34   0.29923787 0.686842105 0.0321230917 0.9525215405
## 625  0.29862231 0.687719298 0.0319718930 0.9525215405
## 1286 0.29800655 0.688596491 0.0318211651 0.9525215405
## 1356 0.29739060 0.689473684 0.0316709063 0.9525215405
## 950  0.29677444 0.690350877 0.0315211149 0.9525215405
## 884  0.29615808 0.691228070 0.0313717891 0.9525215405
## 1114 0.29554151 0.692105263 0.0312229272 0.9525215405
## 1111 0.29492473 0.692982456 0.0310745274 0.9525215405
## 1287 0.29430774 0.693859649 0.0309265881 0.9525215405
## 1363 0.29369052 0.694736842 0.0307791076 0.9525215405
## 718  0.29307308 0.695614035 0.0306320841 0.9525215405
## 1118 0.29245541 0.696491228 0.0304855159 0.9525215405
## 1294 0.29183751 0.697368421 0.0303394014 0.9525215405
## 1499 0.29478276 0.697368421 0.0306432004 0.9583945811
## 1512 0.29416794 0.698245614 0.0304969800 0.9583945811
## 1296 0.29355289 0.699122807 0.0303512111 0.9583945811
## 426  0.29293762 0.700000000 0.0302058919 0.9583945811
## 624  0.29232211 0.700877193 0.0300610208 0.9583945811
## 821  0.29170637 0.701754386 0.0299165962 0.9583945811
## 1008 0.29109038 0.702631579 0.0297726165 0.9583945811
## 1149 0.29047415 0.703508772 0.0296290799 0.9583945811
## 753  0.28985767 0.704385965 0.0294859849 0.9583945811
## 1454 0.28924094 0.705263158 0.0293433298 0.9583945811
## 1273 0.28862395 0.706140351 0.0292011131 0.9583945811
## 467  0.28800670 0.707017544 0.0290593331 0.9583945811
## 573  0.28738918 0.707894737 0.0289179882 0.9583945811
## 110  0.28677139 0.708771930 0.0287770769 0.9583945811
## 1487 0.28615333 0.709649123 0.0286365975 0.9583945811
## 1435 0.28553498 0.710526316 0.0284965485 0.9583945811
## 1436 0.28491636 0.711403509 0.0283569283 0.9583945811
## 322  0.28429745 0.712280702 0.0282177354 0.9583945811
## 1433 0.28367824 0.713157895 0.0280789681 0.9583945811
## 1515 0.28305874 0.714035088 0.0279406250 0.9583945811
## 778  0.28243894 0.714912281 0.0278027044 0.9583945811
## 537  0.28181884 0.715789474 0.0276652050 0.9583945811
## 1249 0.28119842 0.716666667 0.0275281250 0.9583945811
## 719  0.28057769 0.717543860 0.0273914630 0.9583945811
## 768  0.27995665 0.718421053 0.0272552176 0.9583945811
## 1376 0.27933528 0.719298246 0.0271193871 0.9583945811
## 769  0.27871358 0.720175439 0.0269839701 0.9583945811
## 451  0.27809155 0.721052632 0.0268489650 0.9583945811
## 1476 0.27746918 0.721929825 0.0267143705 0.9583945811
## 471  0.27684647 0.722807018 0.0265801849 0.9583945811
## 1126 0.27622341 0.723684211 0.0264464069 0.9583945811
## 1438 0.27560001 0.724561404 0.0263130349 0.9583945811
## 1184 0.27497624 0.725438596 0.0261800675 0.9583945811
## 987  0.27435212 0.726315789 0.0260475033 0.9583945811
## 1381 0.27372763 0.727192982 0.0259153407 0.9583945811
## 506  0.27310277 0.728070175 0.0257835784 0.9583945811
## 1448 0.27247754 0.728947368 0.0256522148 0.9583945811
## 628  0.27185192 0.729824561 0.0255212486 0.9583945811
## 1137 0.27122592 0.730701754 0.0253906784 0.9583945811
## 53   0.27059953 0.731578947 0.0252605027 0.9583945811
## 843  0.26997274 0.732456140 0.0251307200 0.9583945811
## 600  0.26934555 0.733333333 0.0250013291 0.9583945811
## 1473 0.26871796 0.734210526 0.0248723285 0.9583945811
## 1062 0.26808995 0.735087719 0.0247437167 0.9583945811
## 1325 0.26746153 0.735964912 0.0246154925 0.9583945811
## 1161 0.26683269 0.736842105 0.0244876543 0.9583945811
## 438  0.26620342 0.737719298 0.0243602010 0.9583945811
## 1489 0.26557372 0.738596491 0.0242331309 0.9583945811
## 1513 0.26494358 0.739473684 0.0241064429 0.9583945811
## 470  0.26431299 0.740350877 0.0239801355 0.9583945811
## 639  0.26368196 0.741228070 0.0238542074 0.9583945811
## 417  0.26305047 0.742105263 0.0237286573 0.9583945811
## 648  0.26241853 0.742982456 0.0236034837 0.9583945811
## 464  0.26178612 0.743859649 0.0234786854 0.9583945811
## 1380 0.26115323 0.744736842 0.0233542610 0.9583945811
## 415  0.26051987 0.745614035 0.0232302092 0.9583945811
## 414  0.25988603 0.746491228 0.0231065287 0.9583945811
## 733  0.25925170 0.747368421 0.0229832182 0.9583945811
## 684  0.25861688 0.748245614 0.0228602763 0.9583945811
## 1065 0.25798155 0.749122807 0.0227377017 0.9583945811
## 420  0.25734572 0.750000000 0.0226154932 0.9583945811
## 230  0.25670938 0.750877193 0.0224936495 0.9583945811
## 442  0.25607252 0.751754386 0.0223721692 0.9583945811
## 745  0.25543513 0.752631579 0.0222510511 0.9583945811
## 1023 0.25479722 0.753508772 0.0221302939 0.9583945811
## 1258 0.25415876 0.754385965 0.0220098964 0.9583945811
## 678  0.25351977 0.755263158 0.0218898572 0.9583945811
## 290  0.25673234 0.755263158 0.0221595068 0.9642852694
## 949  0.25609747 0.756140351 0.0220393355 0.9642852694
## 541  0.25546207 0.757017544 0.0219195211 0.9642852694
## 539  0.25482613 0.757894737 0.0218000623 0.9642852694
## 612  0.25418965 0.758771930 0.0216809578 0.9642852694
## 863  0.25355262 0.759649123 0.0215622063 0.9642852694
## 877  0.25291503 0.760526316 0.0214438067 0.9642852694
## 1350 0.25227689 0.761403509 0.0213257577 0.9642852694
## 1455 0.25163817 0.762280702 0.0212080581 0.9642852694
## 1450 0.25099889 0.763157895 0.0210907067 0.9642852694
## 497  0.25035902 0.764035088 0.0209737022 0.9642852694
## 1422 0.24971856 0.764912281 0.0208570434 0.9642852694
## 1378 0.24907751 0.765789474 0.0207407292 0.9642852694
## 57   0.24843586 0.766666667 0.0206247583 0.9642852694
## 1021 0.24779359 0.767543860 0.0205091296 0.9642852694
## 1231 0.24715072 0.768421053 0.0203938417 0.9642852694
## 1457 0.24650722 0.769298246 0.0202788937 0.9642852694
## 622  0.24586309 0.770175439 0.0201642842 0.9642852694
## 13   0.24521833 0.771052632 0.0200500122 0.9642852694
## 805  0.24457293 0.771929825 0.0199360764 0.9642852694
## 640  0.24392687 0.772807018 0.0198224756 0.9642852694
## 474  0.24328015 0.773684211 0.0197092088 0.9642852694
## 1223 0.24263277 0.774561404 0.0195962747 0.9642852694
## 736  0.24198472 0.775438596 0.0194836722 0.9642852694
## 1060 0.24133599 0.776315789 0.0193714002 0.9642852694
## 646  0.24068657 0.777192982 0.0192594575 0.9642852694
## 1524 0.24003645 0.778070175 0.0191478429 0.9642852694
## 1256 0.23938563 0.778947368 0.0190365554 0.9642852694
## 955  0.23873410 0.779824561 0.0189255939 0.9642852694
## 867  0.23808185 0.780701754 0.0188149571 0.9642852694
## 677  0.23742887 0.781578947 0.0187046440 0.9642852694
## 523  0.23677516 0.782456140 0.0185946534 0.9642852694
## 1427 0.23612070 0.783333333 0.0184849843 0.9642852694
## 368  0.23950884 0.783333333 0.0187398517 0.9701936053
## 686  0.23885934 0.784210526 0.0186300438 0.9701936053
## 804  0.23820911 0.785087719 0.0185205560 0.9701936053
## 1221 0.23755815 0.785964912 0.0184113872 0.9701936053
## 136  0.24097590 0.785964912 0.0186652839 0.9761195889
## 428  0.24440619 0.785964912 0.0189195820 0.9820632202
## 864  0.24376635 0.786842105 0.0188098191 0.9820632202
## 1495 0.24312584 0.787719298 0.0187003748 0.9820632202
## 905  0.24248464 0.788596491 0.0185912480 0.9820632202
## 694  0.24184276 0.789473684 0.0184824377 0.9820632202
## 611  0.24120018 0.790350877 0.0183739428 0.9820632202
## 403  0.24055690 0.791228070 0.0182657621 0.9820632202
## 680  0.23991290 0.792105263 0.0181578947 0.9820632202
## 84   0.23926818 0.792982456 0.0180503395 0.9820632202
## 341  0.23862273 0.793859649 0.0179430954 0.9820632202
## 1026 0.23797655 0.794736842 0.0178361613 0.9820632202
## 706  0.23732962 0.795614035 0.0177295362 0.9820632202
## 543  0.23668194 0.796491228 0.0176232191 0.9820632202
## 904  0.23603350 0.797368421 0.0175172088 0.9820632202
## 1064 0.23538428 0.798245614 0.0174115044 0.9820632202
## 406  0.23473429 0.799122807 0.0173061049 0.9820632202
## 183  0.23408351 0.800000000 0.0172010091 0.9820632202
## 10   0.23343193 0.800877193 0.0170962161 0.9820632202
## 740  0.23277955 0.801754386 0.0169917249 0.9820632202
## 1227 0.23212636 0.802631579 0.0168875344 0.9820632202
## 1027 0.23147234 0.803508772 0.0167836435 0.9820632202
## 956  0.23081749 0.804385965 0.0166800514 0.9820632202
## 1426 0.23016180 0.805263158 0.0165767570 0.9820632202
## 1237 0.22950525 0.806140351 0.0164737593 0.9820632202
## 1365 0.22884785 0.807017544 0.0163710572 0.9820632202
## 43   0.22818957 0.807894737 0.0162686499 0.9820632202
## 1493 0.22753042 0.808771930 0.0161665362 0.9820632202
## 865  0.22687038 0.809649123 0.0160647153 0.9820632202
## 767  0.22620943 0.810526316 0.0159631861 0.9820632202
## 457  0.22554758 0.811403509 0.0158619477 0.9820632202
## 1497 0.22488481 0.812280702 0.0157609990 0.9820632202
## 469  0.22422111 0.813157895 0.0156603392 0.9820632202
## 1239 0.22355646 0.814035088 0.0155599672 0.9820632202
## 455  0.22289087 0.814912281 0.0154598820 0.9820632202
## 269  0.22222431 0.815789474 0.0153600828 0.9820632202
## 902  0.22155679 0.816666667 0.0152605686 0.9820632202
## 711  0.22088828 0.817543860 0.0151613384 0.9820632202
## 184  0.22021877 0.818421053 0.0150623913 0.9820632202
## 1364 0.21954826 0.819298246 0.0149637262 0.9820632202
## 422  0.21887673 0.820175439 0.0148653424 0.9820632202
## 423  0.21820417 0.821052632 0.0147672388 0.9820632202
## 332  0.21753057 0.821929825 0.0146694145 0.9820632202
## 1112 0.21685592 0.822807018 0.0145718686 0.9820632202
## 1043 0.21618021 0.823684211 0.0144746002 0.9820632202
## 1344 0.21550342 0.824561404 0.0143776083 0.9820632202
## 776  0.21482554 0.825438596 0.0142808920 0.9820632202
## 425  0.21414657 0.826315789 0.0141844504 0.9820632202
## 1233 0.21346647 0.827192982 0.0140882826 0.9820632202
## 1475 0.21278526 0.828070175 0.0139923877 0.9820632202
## 1232 0.21210290 0.828947368 0.0138967648 0.9820632202
## 500  0.21141939 0.829824561 0.0138014130 0.9820632202
## 1236 0.21073472 0.830701754 0.0137063314 0.9820632202
## 1235 0.21004887 0.831578947 0.0136115190 0.9820632202
## 133  0.20936182 0.832456140 0.0135169751 0.9820632202
## 1526 0.20867357 0.833333333 0.0134226986 0.9820632202
## 320  0.20798410 0.834210526 0.0133286889 0.9820632202
## 97   0.20729340 0.835087719 0.0132349448 0.9820632202
## 1477 0.20660145 0.835964912 0.0131414657 0.9820632202
## 1117 0.20590823 0.836842105 0.0130482506 0.9820632202
## 310  0.20521374 0.837719298 0.0129552986 0.9820632202
## 817  0.20451795 0.838596491 0.0128626088 0.9820632202
## 1472 0.20382086 0.839473684 0.0127701805 0.9820632202
## 1494 0.20312244 0.840350877 0.0126780128 0.9820632202
## 1082 0.20242268 0.841228070 0.0125861048 0.9820632202
## 607  0.20172157 0.842105263 0.0124944556 0.9820632202
## 1220 0.20101909 0.842982456 0.0124030644 0.9820632202
## 59   0.20031522 0.843859649 0.0123119303 0.9820632202
## 1255 0.19960994 0.844736842 0.0122210526 0.9820632202
## 1470 0.19890325 0.845614035 0.0121304304 0.9820632202
## 1527 0.19819511 0.846491228 0.0120400628 0.9820632202
## 866  0.19748553 0.847368421 0.0119499490 0.9820632202
## 900  0.19677446 0.848245614 0.0118600882 0.9820632202
## 468  0.19606191 0.849122807 0.0117704796 0.9820632202
## 1295 0.19534785 0.850000000 0.0116811222 0.9820632202
## 918  0.19463226 0.850877193 0.0115920155 0.9820632202
## 499  0.19391513 0.851754386 0.0115031584 0.9820632202
## 1471 0.19319643 0.852631579 0.0114145501 0.9820632202
## 1291 0.19247614 0.853508772 0.0113261900 0.9820632202
## 1297 0.19175425 0.854385965 0.0112380772 0.9820632202
## 339  0.19103074 0.855263158 0.0111502108 0.9820632202
## 724  0.19030558 0.856140351 0.0110625900 0.9820632202
## 1293 0.18957876 0.857017544 0.0109752142 0.9820632202
## 775  0.18885025 0.857894737 0.0108880824 0.9820632202
## 609  0.18812003 0.858771930 0.0108011939 0.9820632202
## 1022 0.18738809 0.859649123 0.0107145480 0.9820632202
## 735  0.18665439 0.860526316 0.0106281437 0.9820632202
## 652  0.18591892 0.861403509 0.0105419803 0.9820632202
## 990  0.18518166 0.862280702 0.0104560572 0.9820632202
## 1290 0.18444257 0.863157895 0.0103703734 0.9820632202
## 1207 0.18370164 0.864035088 0.0102849282 0.9820632202
## 466  0.18295885 0.864912281 0.0101997208 0.9820632202
## 705  0.18221416 0.865789474 0.0101147505 0.9820632202
## 659  0.18146756 0.866666667 0.0100300165 0.9820632202
## 1269 0.18071902 0.867543860 0.0099455181 0.9820632202
## 340  0.17996851 0.868421053 0.0098612544 0.9820632202
## 330  0.17921600 0.869298246 0.0097772248 0.9820632202
## 969  0.17846148 0.870175439 0.0096934285 0.9820632202
## 1377 0.17770491 0.871052632 0.0096098647 0.9820632202
## 1030 0.18200471 0.871052632 0.0098241920 0.9880244991
## 810  0.18125918 0.871929825 0.0097404813 0.9880244991
## 1116 0.18051169 0.872807018 0.0096570023 0.9880244991
## 988  0.17976220 0.873684211 0.0095737544 0.9880244991
## 358  0.17901070 0.874561404 0.0094907367 0.9880244991
## 948  0.17825714 0.875438596 0.0094079486 0.9880244991
## 1357 0.17750150 0.876315789 0.0093253892 0.9880244991
## 333  0.17674376 0.877192982 0.0092430580 0.9880244991
## 852  0.17598389 0.878070175 0.0091609541 0.9880244991
## 1218 0.17522185 0.878947368 0.0090790768 0.9880244991
## 1517 0.17445762 0.879824561 0.0089974254 0.9880244991
## 578  0.17369116 0.880701754 0.0089159991 0.9880244991
## 580  0.17292245 0.881578947 0.0088347974 0.9880244991
## 617  0.17215145 0.882456140 0.0087538193 0.9880244991
## 224  0.17137813 0.883333333 0.0086730643 0.9880244991
## 1185 0.17060245 0.884210526 0.0085925316 0.9880244991
## 1128 0.16982439 0.885087719 0.0085122206 0.9880244991
## 811  0.16904390 0.885964912 0.0084321304 0.9880244991
## 518  0.16826096 0.886842105 0.0083522605 0.9880244991
## 886  0.16747552 0.887719298 0.0082726101 0.9880244991
## 1488 0.16668755 0.888596491 0.0081931785 0.9880244991
## 542  0.16589701 0.889473684 0.0081139650 0.9880244991
## 1316 0.16510387 0.890350877 0.0080349690 0.9880244991
## 1079 0.16430808 0.891228070 0.0079561897 0.9880244991
## 846  0.16350960 0.892105263 0.0078776265 0.9880244991
## 51   0.16270840 0.892982456 0.0077992786 0.9880244991
## 1234 0.16190443 0.893859649 0.0077211455 0.9880244991
## 1421 0.16109764 0.894736842 0.0076432263 0.9880244991
## 1190 0.16028800 0.895614035 0.0075655206 0.9880244991
## 614  0.15947546 0.896491228 0.0074880274 0.9880244991
## 1076 0.15865998 0.897368421 0.0074107463 0.9880244991
## 991  0.15784150 0.898245614 0.0073336766 0.9880244991
## 1525 0.15701998 0.899122807 0.0072568175 0.9880244991
## 966  0.15619537 0.900000000 0.0071801684 0.9880244991
## 1183 0.15536762 0.900877193 0.0071037287 0.9880244991
## 1315 0.15453667 0.901754386 0.0070274976 0.9880244991
## 1226 0.15370249 0.902631579 0.0069514746 0.9880244991
## 737  0.15286500 0.903508772 0.0068756590 0.9880244991
## 606  0.15202416 0.904385965 0.0068000502 0.9880244991
## 703  0.15117991 0.905263158 0.0067246474 0.9880244991
## 106  0.15033219 0.906140351 0.0066494500 0.9880244991
## 156  0.14948094 0.907017544 0.0065744575 0.9880244991
## 848  0.14862611 0.907894737 0.0064996691 0.9880244991
## 752  0.14776762 0.908771930 0.0064250842 0.9880244991
## 571  0.14690541 0.909649123 0.0063507022 0.9880244991
## 650  0.14603942 0.910526316 0.0062765225 0.9880244991
## 338  0.14516958 0.911403509 0.0062025444 0.9880244991
## 704  0.14429582 0.912280702 0.0061287673 0.9880244991
## 1398 0.14341807 0.913157895 0.0060551906 0.9880244991
## 1240 0.14253625 0.914035088 0.0059818135 0.9880244991
## 1424 0.14165029 0.914912281 0.0059086357 0.9880244991
## 845  0.14076011 0.915789474 0.0058356563 0.9880244991
## 1151 0.13986563 0.916666667 0.0057628748 0.9880244991
## 1331 0.13896677 0.917543860 0.0056902906 0.9880244991
## 574  0.13806344 0.918421053 0.0056179030 0.9880244991
## 1313 0.13715555 0.919298246 0.0055457115 0.9880244991
## 842  0.13624303 0.920175439 0.0054737154 0.9880244991
## 1148 0.13532576 0.921052632 0.0054019142 0.9880244991
## 1461 0.13440367 0.921929825 0.0053303071 0.9880244991
## 193  0.13985053 0.921929825 0.0055242218 0.9940034257
## 577  0.13895195 0.922807018 0.0054524686 0.9940034257
## 170  0.14449026 0.922807018 0.0056464634 1.0000000000
## 854  0.14361716 0.923684211 0.0055745646 1.0000000000
## 1330 0.14273994 0.924561404 0.0055028595 1.0000000000
## 508  0.14185852 0.925438596 0.0054313476 1.0000000000
## 1397 0.14097282 0.926315789 0.0053600281 1.0000000000
## 1134 0.14008275 0.927192982 0.0052889005 1.0000000000
## 960  0.13918823 0.928070175 0.0052179642 1.0000000000
## 1404 0.13828918 0.928947368 0.0051472186 1.0000000000
## 913  0.13738549 0.929824561 0.0050766631 1.0000000000
## 337  0.13647708 0.930701754 0.0050062972 1.0000000000
## 878  0.13556384 0.931578947 0.0049361203 1.0000000000
## 1122 0.13464568 0.932456140 0.0048661317 1.0000000000
## 160  0.13372249 0.933333333 0.0047963309 1.0000000000
## 440  0.13279417 0.934210526 0.0047267174 1.0000000000
## 1396 0.13186060 0.935087719 0.0046572905 1.0000000000
## 276  0.13092167 0.935964912 0.0045880498 1.0000000000
## 1449 0.12997726 0.936842105 0.0045189945 1.0000000000
## 717  0.12902724 0.937719298 0.0044501242 1.0000000000
## 844  0.12807149 0.938596491 0.0043814382 1.0000000000
## 419  0.12710988 0.939473684 0.0043129361 1.0000000000
## 241  0.12614227 0.940350877 0.0042446172 1.0000000000
## 1458 0.12516852 0.941228070 0.0041764810 1.0000000000
## 1150 0.12418848 0.942105263 0.0041085270 1.0000000000
## 229  0.12320200 0.942982456 0.0040407545 1.0000000000
## 1360 0.12220891 0.943859649 0.0039731631 1.0000000000
## 507  0.12120906 0.944736842 0.0039057522 1.0000000000
## 100  0.12020228 0.945614035 0.0038385212 1.0000000000
## 1403 0.11918837 0.946491228 0.0037714696 1.0000000000
## 741  0.11816717 0.947368421 0.0037045968 1.0000000000
## 931  0.11713847 0.948245614 0.0036379023 1.0000000000
## 194  0.11610207 0.949122807 0.0035713855 1.0000000000
## 1052 0.11505776 0.950000000 0.0035050460 1.0000000000
## 734  0.11400533 0.950877193 0.0034388832 1.0000000000
## 1337 0.11294453 0.951754386 0.0033728965 1.0000000000
## 1154 0.11187514 0.952631579 0.0033070854 1.0000000000
## 448  0.11079689 0.953508772 0.0032414494 1.0000000000
## 1192 0.10970952 0.954385965 0.0031759879 1.0000000000
## 73   0.10861277 0.955263158 0.0031107004 1.0000000000
## 1367 0.10750633 0.956140351 0.0030455865 1.0000000000
## 882  0.10638990 0.957017544 0.0029806455 1.0000000000
## 342  0.10526316 0.957894737 0.0029158769 1.0000000000
## 240  0.10412577 0.958771930 0.0028512803 1.0000000000
## 514  0.10297738 0.959649123 0.0027868551 1.0000000000
## 1029 0.10181761 0.960526316 0.0027226008 1.0000000000
## 816  0.10064607 0.961403509 0.0026585169 1.0000000000
## 1342 0.09946233 0.962280702 0.0025946028 1.0000000000
## 157  0.09826595 0.963157895 0.0025308581 1.0000000000
## 544  0.09705646 0.964035088 0.0024672822 1.0000000000
## 1371 0.09583337 0.964912281 0.0024038746 1.0000000000
## 132  0.09459613 0.965789474 0.0023406349 1.0000000000
## 119  0.09334418 0.966666667 0.0022775625 1.0000000000
## 1024 0.09207693 0.967543860 0.0022146570 1.0000000000
## 1402 0.09079372 0.968421053 0.0021519178 1.0000000000
## 267  0.08949387 0.969298246 0.0020893443 1.0000000000
## 1063 0.08817664 0.970175439 0.0020269363 1.0000000000
## 876  0.08684123 0.971052632 0.0019646930 1.0000000000
## 1474 0.08548678 0.971929825 0.0019026141 1.0000000000
## 165  0.08411238 0.972807018 0.0018406991 1.0000000000
## 1115 0.08271702 0.973684211 0.0017789474 1.0000000000
## 222  0.08129962 0.974561404 0.0017173585 1.0000000000
## 1248 0.07985901 0.975438596 0.0016559321 1.0000000000
## 912  0.07839390 0.976315789 0.0015946676 1.0000000000
## 923  0.07690289 0.977192982 0.0015335645 1.0000000000
## 134  0.07538443 0.978070175 0.0014726223 1.0000000000
## 885  0.07383682 0.978947368 0.0014118406 1.0000000000
## 629  0.07225821 0.979824561 0.0013512188 1.0000000000
## 723  0.07064648 0.980701754 0.0012907566 1.0000000000
## 472  0.06899934 0.981578947 0.0012304534 1.0000000000
## 453  0.06731416 0.982456140 0.0011703088 1.0000000000
## 33   0.06558801 0.983333333 0.0011103222 1.0000000000
## 1456 0.06381757 0.984210526 0.0010504933 1.0000000000
## 712  0.06199903 0.985087719 0.0009908215 1.0000000000
## 1136 0.06012802 0.985964912 0.0009313064 1.0000000000
## 112  0.05819949 0.986842105 0.0008719475 1.0000000000
## 1530 0.05620750 0.987719298 0.0008127444 1.0000000000
## 407  0.05414505 0.988596491 0.0007536966 1.0000000000
## 1011 0.05200374 0.989473684 0.0006948036 1.0000000000
## 716  0.04977340 0.990350877 0.0006360650 1.0000000000
## 413  0.04744146 0.991228070 0.0005774803 1.0000000000
## 1432 0.04499213 0.992105263 0.0005190491 1.0000000000
## 1314 0.04240505 0.992982456 0.0004607709 1.0000000000
## 274  0.03965326 0.993859649 0.0004026453 1.0000000000
## 1166 0.03669974 0.994736842 0.0003446717 1.0000000000
## 1229 0.03349114 0.995614035 0.0002868499 1.0000000000
## 168  0.02994557 0.996491228 0.0002291792 1.0000000000
## 920  0.02592513 0.997368421 0.0001716594 1.0000000000
## 163  0.02116085 0.998245614 0.0001142898 1.0000000000
## 903  0.01495809 0.999122807 0.0000570702 1.0000000000
## 1238        NaN 1.000000000 0.0000000000 1.0000000000
## 
## 
## [[1]]$optres
## [[1]]$optres$Group1
##                Score        CI
## SENS           0.826 0.78-0.86
## SPEC           0.652 0.62-0.68
## MCC            0.417      <NA>
## Informedness   0.477      <NA>
## PREC           0.448 0.41-0.48
## NPV            0.916  0.9-0.93
## FPR            0.348      <NA>
## F1             0.581      <NA>
## TP           322.000      <NA>
## FP           397.000      <NA>
## TN           743.000      <NA>
## FN            68.000      <NA>
## AUC-ROC        0.820 0.79-0.85
## AUC-PR         0.590      <NA>
## AUC-PRG        0.160      <NA>
## 
## 
## [[1]]$stdres
## [[1]]$stdres$Group1
##                Score        CI
## SENS           0.692 0.64-0.74
## SPEC           0.745 0.72-0.77
## MCC            0.395      <NA>
## Informedness   0.437      <NA>
## PREC           0.481 0.44-0.52
## NPV            0.876  0.85-0.9
## FPR            0.255      <NA>
## F1             0.568      <NA>
## TP           270.000      <NA>
## FP           291.000      <NA>
## TN           849.000      <NA>
## FN           120.000      <NA>
## AUC-ROC        0.820 0.79-0.85
## AUC-PR         0.590      <NA>
## AUC-PRG        0.160      <NA>
## 
## 
## 
## [[2]]
## [[2]]$roc

## 
## [[2]]$proc

## 
## [[2]]$prg

## 
## [[2]]$cc

## 
## [[2]]$probs
## [[2]]$probs$Group1
##           one       zero  obs  Group TP TN FP FN      SENS       SPEC
## 32 0.90447622 0.09552378  one Group1  1 28  0  8 0.1111111 1.00000000
## 36 0.88025125 0.11974875  one Group1  2 28  0  7 0.2222222 1.00000000
## 34 0.87749500 0.12250500  one Group1  3 28  0  6 0.3333333 1.00000000
## 35 0.87210120 0.12789880  one Group1  4 28  0  5 0.4444444 1.00000000
## 10 0.80992503 0.19007497 zero Group1  4 27  1  5 0.4444444 0.96428571
## 31 0.78605814 0.21394186  one Group1  5 27  1  4 0.5555556 0.96428571
## 29 0.74164717 0.25835283  one Group1  6 27  1  3 0.6666667 0.96428571
## 37 0.73549650 0.26450350  one Group1  7 27  1  2 0.7777778 0.96428571
## 23 0.72425177 0.27574823 zero Group1  7 26  2  2 0.7777778 0.92857143
## 24 0.59209502 0.40790498 zero Group1  7 25  3  2 0.7777778 0.89285714
## 20 0.57771077 0.42228923 zero Group1  7 24  4  2 0.7777778 0.85714286
## 6  0.55943202 0.44056798 zero Group1  7 23  5  2 0.7777778 0.82142857
## 21 0.54185965 0.45814035 zero Group1  7 22  6  2 0.7777778 0.78571429
## 8  0.45078826 0.54921174 zero Group1  7 21  7  2 0.7777778 0.75000000
## 30 0.44908658 0.55091342  one Group1  8 21  7  1 0.8888889 0.75000000
## 28 0.43071137 0.56928863 zero Group1  8 20  8  1 0.8888889 0.71428571
## 27 0.39902750 0.60097250 zero Group1  8 19  9  1 0.8888889 0.67857143
## 5  0.39625276 0.60374724 zero Group1  8 18 10  1 0.8888889 0.64285714
## 7  0.38577388 0.61422612 zero Group1  8 17 11  1 0.8888889 0.60714286
## 22 0.38168007 0.61831993 zero Group1  8 16 12  1 0.8888889 0.57142857
## 33 0.37481041 0.62518959  one Group1  9 16 12  0 1.0000000 0.57142857
## 19 0.33739350 0.66260650 zero Group1  9 15 13  0 1.0000000 0.53571429
## 1  0.30863807 0.69136193 zero Group1  9 14 14  0 1.0000000 0.50000000
## 13 0.28372700 0.71627300 zero Group1  9 13 15  0 1.0000000 0.46428571
## 4  0.21299150 0.78700850 zero Group1  9 12 16  0 1.0000000 0.42857143
## 3  0.19975956 0.80024044 zero Group1  9 11 17  0 1.0000000 0.39285714
## 11 0.18476028 0.81523972 zero Group1  9 10 18  0 1.0000000 0.35714286
## 9  0.17262249 0.82737751 zero Group1  9  9 19  0 1.0000000 0.32142857
## 17 0.14778384 0.85221616 zero Group1  9  8 20  0 1.0000000 0.28571429
## 25 0.13055314 0.86944686 zero Group1  9  7 21  0 1.0000000 0.25000000
## 14 0.11632247 0.88367753 zero Group1  9  6 22  0 1.0000000 0.21428571
## 26 0.07616263 0.92383737 zero Group1  9  5 23  0 1.0000000 0.17857143
## 12 0.06856573 0.93143427 zero Group1  9  4 24  0 1.0000000 0.14285714
## 18 0.06273136 0.93726864 zero Group1  9  3 25  0 1.0000000 0.10714286
## 16 0.04309910 0.95690090 zero Group1  9  2 26  0 1.0000000 0.07142857
## 15 0.02671088 0.97328912 zero Group1  9  1 27  0 1.0000000 0.03571429
## 2  0.02106795 0.97893205 zero Group1  9  0 28  0 1.0000000 0.00000000
##    Informedness      PREC       NPV      MARK        F1        MCC        FPR
## 32   0.11111111 1.0000000 0.7777778 0.7777778 0.2000000 0.29397237 0.00000000
## 36   0.22222222 1.0000000 0.8000000 0.8000000 0.3636364 0.42163702 0.00000000
## 34   0.33333333 1.0000000 0.8235294 0.8235294 0.5000000 0.52393683 0.00000000
## 35   0.44444444 1.0000000 0.8484848 0.8484848 0.6153846 0.61408825 0.00000000
## 10   0.40873016 0.8000000 0.8437500 0.6437500 0.5714286 0.51295228 0.03571429
## 31   0.51984127 0.8333333 0.8709677 0.7043011 0.6666667 0.60508245 0.03571429
## 29   0.63095238 0.8571429 0.9000000 0.7571429 0.7500000 0.69117370 0.03571429
## 37   0.74206349 0.8750000 0.9310345 0.8060345 0.8235294 0.77338785 0.03571429
## 23   0.70634921 0.7777778 0.9285714 0.7063492 0.7777778 0.70634921 0.07142857
## 24   0.67063492 0.7000000 0.9259259 0.6259259 0.7368421 0.64789489 0.10714286
## 20   0.63492063 0.6363636 0.9230769 0.5594406 0.7000000 0.59598688 0.14285714
## 6    0.59920635 0.5833333 0.9200000 0.5033333 0.6666667 0.54918169 0.17857143
## 21   0.56349206 0.5384615 0.9166667 0.4551282 0.6363636 0.50641992 0.21428571
## 8    0.52777778 0.5000000 0.9130435 0.4130435 0.6086957 0.46689953 0.25000000
## 30   0.63888889 0.5333333 0.9545455 0.4878788 0.6666667 0.55830130 0.25000000
## 28   0.60317460 0.5000000 0.9523810 0.4523810 0.6400000 0.52236453 0.28571429
## 27   0.56746032 0.4705882 0.9500000 0.4205882 0.6153846 0.48853570 0.32142857
## 5    0.53174603 0.4444444 0.9473684 0.3918129 0.5925926 0.45644817 0.35714286
## 7    0.49603175 0.4210526 0.9444444 0.3654971 0.5714286 0.42579121 0.39285714
## 22   0.46031746 0.4000000 0.9411765 0.3411765 0.5517241 0.39629470 0.42857143
## 33   0.57142857 0.4285714 1.0000000 0.4285714 0.6000000 0.49487166 0.42857143
## 19   0.53571429 0.4090909 1.0000000 0.4090909 0.5806452 0.46814084 0.46428571
## 1    0.50000000 0.3913043 1.0000000 0.3913043 0.5625000 0.44232587 0.50000000
## 13   0.46428571 0.3750000 1.0000000 0.3750000 0.5454545 0.41726148 0.53571429
## 4    0.42857143 0.3600000 1.0000000 0.3600000 0.5294118 0.39279220 0.57142857
## 3    0.39285714 0.3461538 1.0000000 0.3461538 0.5142857 0.36876688 0.60714286
## 11   0.35714286 0.3333333 1.0000000 0.3333333 0.5000000 0.34503278 0.64285714
## 9    0.32142857 0.3214286 1.0000000 0.3214286 0.4864865 0.32142857 0.67857143
## 17   0.28571429 0.3103448 1.0000000 0.3103448 0.4736842 0.29777500 0.71428571
## 25   0.25000000 0.3000000 1.0000000 0.3000000 0.4615385 0.27386128 0.75000000
## 14   0.21428571 0.2903226 1.0000000 0.2903226 0.4500000 0.24942330 0.78571429
## 26   0.17857143 0.2812500 1.0000000 0.2812500 0.4390244 0.22410536 0.82142857
## 12   0.14285714 0.2727273 1.0000000 0.2727273 0.4285714 0.19738551 0.85714286
## 18   0.10714286 0.2647059 1.0000000 0.2647059 0.4186047 0.16840827 0.89285714
## 16   0.07142857 0.2571429 1.0000000 0.2571429 0.4090909 0.13552619 0.92857143
## 15   0.03571429 0.2500000 1.0000000 0.2500000 0.4000000 0.09449112 0.96428571
## 2    0.00000000 0.2432432 0.0000000       NaN 0.3913043        NaN 1.00000000
##             PG         RG
## 32 1.000000000 0.00000000
## 36 1.000000000 0.00000000
## 34 1.000000000 0.03968254
## 35 1.000000000 0.11816578
## 10 0.588571429 0.11816578
## 31 0.649801587 0.22927690
## 29 0.695335277 0.37301587
## 37 0.730468750 0.54938272
## 23 0.549382716 0.54938272
## 24 0.422500000 0.54938272
## 20 0.330578512 0.54938272
## 6  0.262152778 0.54938272
## 21 0.210059172 0.54938272
## 8  0.169642857 0.54938272
## 30 0.204444444 0.75837743
## 28 0.169642857 0.75837743
## 27 0.141374197 0.75837743
## 5  0.118165785 0.75837743
## 7  0.098931539 0.75837743
## 22 0.082857143 0.75837743
## 33 0.104956268 1.00000000
## 19 0.089654664 1.00000000
## 1  0.076559546 1.00000000
## 13 0.065290179 1.00000000
## 4  0.055542857 1.00000000
## 3  0.047073119 1.00000000
## 11 0.039682540 1.00000000
## 9  0.033208819 1.00000000
## 17 0.027518261 1.00000000
## 25 0.022500000 1.00000000
## 14 0.018061543 1.00000000
## 26 0.014125279 1.00000000
## 12 0.010625738 1.00000000
## 18 0.007507415 1.00000000
## 16 0.004723032 1.00000000
## 15 0.002232143 1.00000000
## 2  0.000000000 1.00000000
## 
## 
## [[2]]$optres
## [[2]]$optres$Group1
##               Score        CI
## SENS          0.778 0.45-0.94
## SPEC          0.964 0.82-0.99
## MCC           0.773      <NA>
## Informedness  0.742      <NA>
## PREC          0.875 0.53-0.98
## NPV           0.931 0.78-0.98
## FPR           0.036      <NA>
## F1            0.824      <NA>
## TP            7.000      <NA>
## FP            1.000      <NA>
## TN           27.000      <NA>
## FN            2.000      <NA>
## AUC-ROC       0.910 0.78-1.04
## AUC-PR        0.720      <NA>
## AUC-PRG       0.490      <NA>
## 
## 
## [[2]]$stdres
## [[2]]$stdres$Group1
##               Score        CI
## SENS          0.778 0.45-0.94
## SPEC          0.786   0.6-0.9
## MCC           0.506      <NA>
## Informedness  0.563      <NA>
## PREC          0.538 0.29-0.77
## NPV           0.917 0.74-0.98
## FPR           0.214      <NA>
## F1            0.636      <NA>
## TP            7.000      <NA>
## FP            6.000      <NA>
## TN           22.000      <NA>
## FN            2.000      <NA>
## AUC-ROC       0.910 0.78-1.04
## AUC-PR        0.720      <NA>
## AUC-PRG       0.490      <NA>

rf

viz_perf_f(model_m=rf_m,
           testdat=testSet1,
           bin_num=10)

## [[1]]
## [[1]]$roc

## 
## [[1]]$proc

## 
## [[1]]$prg

## 
## [[1]]$cc

## 
## [[1]]$probs
## [[1]]$probs$Group1
##        one  zero  obs  Group  TP   TN   FP  FN        SENS        SPEC
## 409  0.998 0.002  one Group1   1 1140    0 389 0.002564103 1.000000000
## 636  0.984 0.016  one Group1   2 1140    0 388 0.005128205 1.000000000
## 718  0.966 0.034 zero Group1   2 1139    1 388 0.005128205 0.999122807
## 969  0.962 0.038  one Group1   3 1139    1 387 0.007692308 0.999122807
## 1122 0.954 0.046  one Group1   4 1139    1 386 0.010256410 0.999122807
## 469  0.952 0.048  one Group1   5 1139    1 385 0.012820513 0.999122807
## 1388 0.948 0.052  one Group1   6 1139    1 384 0.015384615 0.999122807
## 144  0.944 0.056  one Group1   8 1139    1 382 0.020512821 0.999122807
## 284  0.944 0.056  one Group1   8 1139    1 382 0.020512821 0.999122807
## 634  0.942 0.058  one Group1  10 1139    1 380 0.025641026 0.999122807
## 1105 0.942 0.058  one Group1  10 1139    1 380 0.025641026 0.999122807
## 896  0.938 0.062  one Group1  12 1139    1 378 0.030769231 0.999122807
## 1316 0.938 0.062  one Group1  12 1139    1 378 0.030769231 0.999122807
## 138  0.936 0.064  one Group1  13 1138    2 377 0.033333333 0.998245614
## 348  0.936 0.064 zero Group1  13 1138    2 377 0.033333333 0.998245614
## 492  0.930 0.070  one Group1  15 1138    2 375 0.038461538 0.998245614
## 970  0.930 0.070  one Group1  15 1138    2 375 0.038461538 0.998245614
## 665  0.928 0.072  one Group1  16 1138    2 374 0.041025641 0.998245614
## 1455 0.926 0.074  one Group1  17 1138    2 373 0.043589744 0.998245614
## 1031 0.922 0.078  one Group1  18 1138    2 372 0.046153846 0.998245614
## 146  0.918 0.082  one Group1  19 1138    2 371 0.048717949 0.998245614
## 113  0.914 0.086  one Group1  22 1138    2 368 0.056410256 0.998245614
## 391  0.914 0.086  one Group1  22 1138    2 368 0.056410256 0.998245614
## 1396 0.914 0.086  one Group1  22 1138    2 368 0.056410256 0.998245614
## 735  0.912 0.088  one Group1  24 1138    2 366 0.061538462 0.998245614
## 1457 0.912 0.088  one Group1  24 1138    2 366 0.061538462 0.998245614
## 666  0.910 0.090  one Group1  25 1138    2 365 0.064102564 0.998245614
## 394  0.906 0.094  one Group1  29 1138    2 361 0.074358974 0.998245614
## 490  0.906 0.094  one Group1  29 1138    2 361 0.074358974 0.998245614
## 827  0.906 0.094  one Group1  29 1138    2 361 0.074358974 0.998245614
## 1117 0.906 0.094  one Group1  29 1138    2 361 0.074358974 0.998245614
## 633  0.904 0.096  one Group1  30 1138    2 360 0.076923077 0.998245614
## 162  0.896 0.104 zero Group1  30 1137    3 360 0.076923077 0.997368421
## 487  0.890 0.110  one Group1  31 1137    3 359 0.079487179 0.997368421
## 703  0.888 0.112 zero Group1  31 1136    4 359 0.079487179 0.996491228
## 1413 0.884 0.116 zero Group1  31 1135    5 359 0.079487179 0.995614035
## 874  0.882 0.118  one Group1  33 1135    5 357 0.084615385 0.995614035
## 1460 0.882 0.118  one Group1  33 1135    5 357 0.084615385 0.995614035
## 903  0.878 0.122  one Group1  34 1135    5 356 0.087179487 0.995614035
## 609  0.876 0.124 zero Group1  34 1133    7 356 0.087179487 0.993859649
## 1439 0.876 0.124 zero Group1  34 1133    7 356 0.087179487 0.993859649
## 836  0.874 0.126 zero Group1  35 1132    8 355 0.089743590 0.992982456
## 1319 0.874 0.126  one Group1  35 1132    8 355 0.089743590 0.992982456
## 390  0.872 0.128  one Group1  37 1131    9 353 0.094871795 0.992105263
## 900  0.872 0.128  one Group1  37 1131    9 353 0.094871795 0.992105263
## 1052 0.872 0.128 zero Group1  37 1131    9 353 0.094871795 0.992105263
## 169  0.870 0.130  one Group1  38 1131    9 352 0.097435897 0.992105263
## 71   0.864 0.136  one Group1  39 1131    9 351 0.100000000 0.992105263
## 832  0.862 0.138  one Group1  41 1131    9 349 0.105128205 0.992105263
## 976  0.862 0.138  one Group1  41 1131    9 349 0.105128205 0.992105263
## 828  0.860 0.140  one Group1  42 1131    9 348 0.107692308 0.992105263
## 1317 0.856 0.144  one Group1  43 1131    9 347 0.110256410 0.992105263
## 112  0.854 0.146  one Group1  46 1131    9 344 0.117948718 0.992105263
## 1172 0.854 0.146  one Group1  46 1131    9 344 0.117948718 0.992105263
## 1365 0.854 0.146  one Group1  46 1131    9 344 0.117948718 0.992105263
## 973  0.852 0.148  one Group1  47 1131    9 343 0.120512821 0.992105263
## 388  0.850 0.150  one Group1  49 1131    9 341 0.125641026 0.992105263
## 812  0.850 0.150  one Group1  49 1131    9 341 0.125641026 0.992105263
## 730  0.844 0.156  one Group1  50 1130   10 340 0.128205128 0.991228070
## 938  0.844 0.156 zero Group1  50 1130   10 340 0.128205128 0.991228070
## 151  0.842 0.158  one Group1  51 1130   10 339 0.130769231 0.991228070
## 1176 0.838 0.162  one Group1  52 1130   10 338 0.133333333 0.991228070
## 975  0.836 0.164  one Group1  53 1130   10 337 0.135897436 0.991228070
## 540  0.834 0.166 zero Group1  54 1129   11 336 0.138461538 0.990350877
## 732  0.834 0.166  one Group1  54 1129   11 336 0.138461538 0.990350877
## 78   0.830 0.170  one Group1  57 1129   11 333 0.146153846 0.990350877
## 879  0.830 0.170  one Group1  57 1129   11 333 0.146153846 0.990350877
## 1045 0.830 0.170  one Group1  57 1129   11 333 0.146153846 0.990350877
## 1197 0.826 0.174 zero Group1  57 1128   12 333 0.146153846 0.989473684
## 1274 0.824 0.176 zero Group1  57 1127   13 333 0.146153846 0.988596491
## 449  0.822 0.178 zero Group1  58 1125   15 332 0.148717949 0.986842105
## 592  0.822 0.178  one Group1  58 1125   15 332 0.148717949 0.986842105
## 1438 0.822 0.178 zero Group1  58 1125   15 332 0.148717949 0.986842105
## 255  0.820 0.180 zero Group1  58 1124   16 332 0.148717949 0.985964912
## 320  0.818 0.182  one Group1  60 1124   16 330 0.153846154 0.985964912
## 417  0.818 0.182  one Group1  60 1124   16 330 0.153846154 0.985964912
## 605  0.816 0.184 zero Group1  60 1123   17 330 0.153846154 0.985087719
## 600  0.814 0.186 zero Group1  60 1122   18 330 0.153846154 0.984210526
## 731  0.810 0.190  one Group1  61 1122   18 329 0.156410256 0.984210526
## 107  0.808 0.192 zero Group1  63 1121   19 327 0.161538462 0.983333333
## 115  0.808 0.192  one Group1  63 1121   19 327 0.161538462 0.983333333
## 632  0.808 0.192  one Group1  63 1121   19 327 0.161538462 0.983333333
## 344  0.806 0.194  one Group1  64 1120   20 326 0.164102564 0.982456140
## 642  0.806 0.194 zero Group1  64 1120   20 326 0.164102564 0.982456140
## 325  0.804 0.196 zero Group1  65 1119   21 325 0.166666667 0.981578947
## 415  0.804 0.196  one Group1  65 1119   21 325 0.166666667 0.981578947
## 145  0.802 0.198  one Group1  67 1119   21 323 0.171794872 0.981578947
## 878  0.802 0.198  one Group1  67 1119   21 323 0.171794872 0.981578947
## 467  0.798 0.202 zero Group1  68 1117   23 322 0.174358974 0.979824561
## 760  0.798 0.202  one Group1  68 1117   23 322 0.174358974 0.979824561
## 856  0.798 0.202 zero Group1  68 1117   23 322 0.174358974 0.979824561
## 686  0.796 0.204 zero Group1  69 1116   24 321 0.176923077 0.978947368
## 885  0.796 0.204  one Group1  69 1116   24 321 0.176923077 0.978947368
## 149  0.794 0.206  one Group1  72 1115   25 318 0.184615385 0.978070175
## 583  0.794 0.206  one Group1  72 1115   25 318 0.184615385 0.978070175
## 687  0.794 0.206 zero Group1  72 1115   25 318 0.184615385 0.978070175
## 1362 0.794 0.206  one Group1  72 1115   25 318 0.184615385 0.978070175
## 1359 0.790 0.210  one Group1  74 1115   25 316 0.189743590 0.978070175
## 1397 0.790 0.210  one Group1  74 1115   25 316 0.189743590 0.978070175
## 594  0.788 0.212  one Group1  75 1115   25 315 0.192307692 0.978070175
## 857  0.784 0.216  one Group1  76 1115   25 314 0.194871795 0.978070175
## 173  0.782 0.218  one Group1  80 1113   27 310 0.205128205 0.976315789
## 281  0.782 0.218 zero Group1  80 1113   27 310 0.205128205 0.976315789
## 316  0.782 0.218  one Group1  80 1113   27 310 0.205128205 0.976315789
## 413  0.782 0.218  one Group1  80 1113   27 310 0.205128205 0.976315789
## 1004 0.782 0.218 zero Group1  80 1113   27 310 0.205128205 0.976315789
## 1251 0.782 0.218  one Group1  80 1113   27 310 0.205128205 0.976315789
## 877  0.780 0.220  one Group1  81 1113   27 309 0.207692308 0.976315789
## 59   0.778 0.222 zero Group1  83 1112   28 307 0.212820513 0.975438596
## 801  0.778 0.222  one Group1  83 1112   28 307 0.212820513 0.975438596
## 1219 0.778 0.222  one Group1  83 1112   28 307 0.212820513 0.975438596
## 175  0.776 0.224  one Group1  87 1111   29 303 0.223076923 0.974561404
## 372  0.776 0.224  one Group1  87 1111   29 303 0.223076923 0.974561404
## 537  0.776 0.224 zero Group1  87 1111   29 303 0.223076923 0.974561404
## 1147 0.776 0.224  one Group1  87 1111   29 303 0.223076923 0.974561404
## 1177 0.776 0.224  one Group1  87 1111   29 303 0.223076923 0.974561404
## 245  0.774 0.226  one Group1  90 1110   30 300 0.230769231 0.973684211
## 728  0.774 0.226  one Group1  90 1110   30 300 0.230769231 0.973684211
## 1173 0.774 0.226  one Group1  90 1110   30 300 0.230769231 0.973684211
## 1344 0.774 0.226 zero Group1  90 1110   30 300 0.230769231 0.973684211
## 168  0.770 0.230  one Group1  93 1110   30 297 0.238461538 0.973684211
## 247  0.770 0.230  one Group1  93 1110   30 297 0.238461538 0.973684211
## 447  0.770 0.230  one Group1  93 1110   30 297 0.238461538 0.973684211
## 411  0.768 0.232  one Group1  95 1110   30 295 0.243589744 0.973684211
## 886  0.768 0.232  one Group1  95 1110   30 295 0.243589744 0.973684211
## 147  0.764 0.236  one Group1  97 1110   30 293 0.248717949 0.973684211
## 587  0.764 0.236  one Group1  97 1110   30 293 0.248717949 0.973684211
## 315  0.762 0.238  one Group1 100 1110   30 290 0.256410256 0.973684211
## 519  0.762 0.238  one Group1 100 1110   30 290 0.256410256 0.973684211
## 1386 0.762 0.238  one Group1 100 1110   30 290 0.256410256 0.973684211
## 1145 0.760 0.240  one Group1 101 1110   30 289 0.258974359 0.973684211
## 802  0.758 0.242  one Group1 102 1109   31 288 0.261538462 0.972807018
## 881  0.758 0.242 zero Group1 102 1109   31 288 0.261538462 0.972807018
## 516  0.754 0.246 zero Group1 104 1108   32 286 0.266666667 0.971929825
## 579  0.754 0.246  one Group1 104 1108   32 286 0.266666667 0.971929825
## 1070 0.754 0.246  one Group1 104 1108   32 286 0.266666667 0.971929825
## 805  0.752 0.248  one Group1 105 1108   32 285 0.269230769 0.971929825
## 1287 0.748 0.252  one Group1 106 1108   32 284 0.271794872 0.971929825
## 267  0.746 0.254 zero Group1 107 1107   33 283 0.274358974 0.971052632
## 630  0.746 0.254  one Group1 107 1107   33 283 0.274358974 0.971052632
## 442  0.744 0.256 zero Group1 107 1106   34 283 0.274358974 0.970175439
## 1385 0.740 0.260  one Group1 108 1106   34 282 0.276923077 0.970175439
## 733  0.738 0.262  one Group1 109 1106   34 281 0.279487179 0.970175439
## 243  0.736 0.264  one Group1 111 1106   34 279 0.284615385 0.970175439
## 314  0.736 0.264  one Group1 111 1106   34 279 0.284615385 0.970175439
## 800  0.734 0.266  one Group1 112 1106   34 278 0.287179487 0.970175439
## 140  0.732 0.268  one Group1 113 1105   35 277 0.289743590 0.969298246
## 623  0.732 0.268 zero Group1 113 1105   35 277 0.289743590 0.969298246
## 1069 0.730 0.270  one Group1 115 1105   35 275 0.294871795 0.969298246
## 1384 0.730 0.270  one Group1 115 1105   35 275 0.294871795 0.969298246
## 341  0.728 0.272  one Group1 116 1104   36 274 0.297435897 0.968421053
## 702  0.728 0.272 zero Group1 116 1104   36 274 0.297435897 0.968421053
## 1231 0.724 0.276 zero Group1 116 1103   37 274 0.297435897 0.967543860
## 806  0.720 0.280  one Group1 117 1103   37 273 0.300000000 0.967543860
## 654  0.718 0.282  one Group1 119 1103   37 271 0.305128205 0.967543860
## 1104 0.718 0.282  one Group1 119 1103   37 271 0.305128205 0.967543860
## 488  0.716 0.284  one Group1 120 1103   37 270 0.307692308 0.967543860
## 47   0.714 0.286 zero Group1 122 1102   38 268 0.312820513 0.966666667
## 1146 0.714 0.286  one Group1 122 1102   38 268 0.312820513 0.966666667
## 1464 0.714 0.286  one Group1 122 1102   38 268 0.312820513 0.966666667
## 1175 0.712 0.288  one Group1 123 1102   38 267 0.315384615 0.966666667
## 273  0.710 0.290 zero Group1 124 1100   40 266 0.317948718 0.964912281
## 515  0.710 0.290 zero Group1 124 1100   40 266 0.317948718 0.964912281
## 578  0.710 0.290  one Group1 124 1100   40 266 0.317948718 0.964912281
## 170  0.706 0.294  one Group1 126 1099   41 264 0.323076923 0.964035088
## 736  0.706 0.294 zero Group1 126 1099   41 264 0.323076923 0.964035088
## 1065 0.706 0.294  one Group1 126 1099   41 264 0.323076923 0.964035088
## 663  0.702 0.298  one Group1 127 1099   41 263 0.325641026 0.964035088
## 11   0.700 0.300 zero Group1 127 1098   42 263 0.325641026 0.963157895
## 1042 0.698 0.302 zero Group1 128 1097   43 262 0.328205128 0.962280702
## 1393 0.698 0.302  one Group1 128 1097   43 262 0.328205128 0.962280702
## 1456 0.696 0.304  one Group1 129 1096   44 261 0.330769231 0.961403509
## 1496 0.696 0.304 zero Group1 129 1096   44 261 0.330769231 0.961403509
## 7    0.694 0.306 zero Group1 130 1095   45 260 0.333333333 0.960526316
## 1028 0.694 0.306  one Group1 130 1095   45 260 0.333333333 0.960526316
## 1103 0.692 0.308  one Group1 131 1095   45 259 0.335897436 0.960526316
## 452  0.690 0.310 zero Group1 131 1093   47 259 0.335897436 0.958771930
## 846  0.690 0.310 zero Group1 131 1093   47 259 0.335897436 0.958771930
## 311  0.688 0.312  one Group1 134 1093   47 256 0.343589744 0.958771930
## 899  0.688 0.312  one Group1 134 1093   47 256 0.343589744 0.958771930
## 1463 0.688 0.312  one Group1 134 1093   47 256 0.343589744 0.958771930
## 617  0.686 0.314 zero Group1 134 1092   48 256 0.343589744 0.957894737
## 378  0.682 0.318 zero Group1 134 1091   49 256 0.343589744 0.957017544
## 1030 0.680 0.320  one Group1 135 1091   49 255 0.346153846 0.957017544
## 1436 0.678 0.322 zero Group1 135 1090   50 255 0.346153846 0.956140351
## 1364 0.674 0.326  one Group1 136 1090   50 254 0.348717949 0.956140351
## 804  0.672 0.328  one Group1 137 1090   50 253 0.351282051 0.956140351
## 27   0.670 0.330 zero Group1 138 1088   52 252 0.353846154 0.954385965
## 1068 0.670 0.330  one Group1 138 1088   52 252 0.353846154 0.954385965
## 1443 0.670 0.330 zero Group1 138 1088   52 252 0.353846154 0.954385965
## 137  0.666 0.334  one Group1 139 1086   54 251 0.356410256 0.952631579
## 375  0.666 0.334 zero Group1 139 1086   54 251 0.356410256 0.952631579
## 674  0.666 0.334 zero Group1 139 1086   54 251 0.356410256 0.952631579
## 1100 0.664 0.336  one Group1 141 1085   55 249 0.361538462 0.951754386
## 1203 0.664 0.336 zero Group1 141 1085   55 249 0.361538462 0.951754386
## 1321 0.664 0.336  one Group1 141 1085   55 249 0.361538462 0.951754386
## 894  0.662 0.338  one Group1 142 1084   56 248 0.364102564 0.950877193
## 1040 0.662 0.338 zero Group1 142 1084   56 248 0.364102564 0.950877193
## 256  0.658 0.342 zero Group1 143 1083   57 247 0.366666667 0.950000000
## 638  0.658 0.342  one Group1 143 1083   57 247 0.366666667 0.950000000
## 172  0.656 0.344  one Group1 146 1081   59 244 0.374358974 0.948245614
## 283  0.656 0.344 zero Group1 146 1081   59 244 0.374358974 0.948245614
## 855  0.656 0.344 zero Group1 146 1081   59 244 0.374358974 0.948245614
## 1002 0.656 0.344  one Group1 146 1081   59 244 0.374358974 0.948245614
## 1066 0.656 0.344  one Group1 146 1081   59 244 0.374358974 0.948245614
## 164  0.654 0.346 zero Group1 150 1080   60 240 0.384615385 0.947368421
## 345  0.654 0.346  one Group1 150 1080   60 240 0.384615385 0.947368421
## 1454 0.654 0.346  one Group1 150 1080   60 240 0.384615385 0.947368421
## 1458 0.654 0.346  one Group1 150 1080   60 240 0.384615385 0.947368421
## 1467 0.654 0.346  one Group1 150 1080   60 240 0.384615385 0.947368421
## 142  0.652 0.348  one Group1 154 1079   61 236 0.394871795 0.946491228
## 389  0.652 0.348  one Group1 154 1079   61 236 0.394871795 0.946491228
## 807  0.652 0.348  one Group1 154 1079   61 236 0.394871795 0.946491228
## 909  0.652 0.348 zero Group1 154 1079   61 236 0.394871795 0.946491228
## 1466 0.652 0.348  one Group1 154 1079   61 236 0.394871795 0.946491228
## 831  0.650 0.350  one Group1 155 1079   61 235 0.397435897 0.946491228
## 1067 0.648 0.352  one Group1 156 1079   61 234 0.400000000 0.946491228
## 70   0.646 0.354  one Group1 158 1078   62 232 0.405128205 0.945614035
## 727  0.646 0.354  one Group1 158 1078   62 232 0.405128205 0.945614035
## 1421 0.646 0.354 zero Group1 158 1078   62 232 0.405128205 0.945614035
## 307  0.644 0.356 zero Group1 159 1076   64 231 0.407692308 0.943859649
## 555  0.644 0.356  one Group1 159 1076   64 231 0.407692308 0.943859649
## 953  0.644 0.356 zero Group1 159 1076   64 231 0.407692308 0.943859649
## 25   0.642 0.358 zero Group1 159 1075   65 231 0.407692308 0.942982456
## 318  0.640 0.360  one Group1 162 1074   66 228 0.415384615 0.942105263
## 870  0.640 0.360 zero Group1 162 1074   66 228 0.415384615 0.942105263
## 1043 0.640 0.360  one Group1 162 1074   66 228 0.415384615 0.942105263
## 1392 0.640 0.360  one Group1 162 1074   66 228 0.415384615 0.942105263
## 310  0.638 0.362  one Group1 163 1073   67 227 0.417948718 0.941228070
## 1519 0.638 0.362 zero Group1 163 1073   67 227 0.417948718 0.941228070
## 624  0.634 0.366 zero Group1 164 1070   70 226 0.420512821 0.938596491
## 891  0.634 0.366 zero Group1 164 1070   70 226 0.420512821 0.938596491
## 1337 0.634 0.366 zero Group1 164 1070   70 226 0.420512821 0.938596491
## 1394 0.634 0.366  one Group1 164 1070   70 226 0.420512821 0.938596491
## 980  0.632 0.368 zero Group1 164 1068   72 226 0.420512821 0.936842105
## 982  0.632 0.368 zero Group1 164 1068   72 226 0.420512821 0.936842105
## 788  0.630 0.370 zero Group1 164 1066   74 226 0.420512821 0.935087719
## 932  0.630 0.370 zero Group1 164 1066   74 226 0.420512821 0.935087719
## 966  0.628 0.372  one Group1 165 1066   74 225 0.423076923 0.935087719
## 230  0.624 0.376 zero Group1 165 1063   77 225 0.423076923 0.932456140
## 771  0.624 0.376 zero Group1 165 1063   77 225 0.423076923 0.932456140
## 1511 0.624 0.376 zero Group1 165 1063   77 225 0.423076923 0.932456140
## 28   0.622 0.378 zero Group1 165 1060   80 225 0.423076923 0.929824561
## 52   0.622 0.378 zero Group1 165 1060   80 225 0.423076923 0.929824561
## 129  0.622 0.378 zero Group1 165 1060   80 225 0.423076923 0.929824561
## 888  0.618 0.382 zero Group1 165 1059   81 225 0.423076923 0.928947368
## 419  0.616 0.384  one Group1 166 1056   84 224 0.425641026 0.926315789
## 764  0.616 0.384 zero Group1 166 1056   84 224 0.425641026 0.926315789
## 1055 0.616 0.384 zero Group1 166 1056   84 224 0.425641026 0.926315789
## 1513 0.616 0.384 zero Group1 166 1056   84 224 0.425641026 0.926315789
## 780  0.614 0.386 zero Group1 167 1055   85 223 0.428205128 0.925438596
## 1292 0.614 0.386  one Group1 167 1055   85 223 0.428205128 0.925438596
## 414  0.612 0.388  one Group1 168 1054   86 222 0.430769231 0.924561404
## 678  0.612 0.388 zero Group1 168 1054   86 222 0.430769231 0.924561404
## 250  0.608 0.392 zero Group1 169 1053   87 221 0.433333333 0.923684211
## 734  0.608 0.392  one Group1 169 1053   87 221 0.433333333 0.923684211
## 198  0.606 0.394 zero Group1 169 1049   91 221 0.433333333 0.920175439
## 498  0.606 0.394 zero Group1 169 1049   91 221 0.433333333 0.920175439
## 705  0.606 0.394 zero Group1 169 1049   91 221 0.433333333 0.920175439
## 848  0.606 0.394 zero Group1 169 1049   91 221 0.433333333 0.920175439
## 563  0.604 0.396  one Group1 170 1049   91 220 0.435897436 0.920175439
## 631  0.602 0.398  one Group1 171 1048   92 219 0.438461538 0.919298246
## 757  0.602 0.398 zero Group1 171 1048   92 219 0.438461538 0.919298246
## 880  0.600 0.400  one Group1 172 1046   94 218 0.441025641 0.917543860
## 1261 0.600 0.400 zero Group1 172 1046   94 218 0.441025641 0.917543860
## 1444 0.600 0.400 zero Group1 172 1046   94 218 0.441025641 0.917543860
## 143  0.598 0.402  one Group1 173 1045   95 217 0.443589744 0.916666667
## 1440 0.598 0.402 zero Group1 173 1045   95 217 0.443589744 0.916666667
## 61   0.596 0.404 zero Group1 173 1043   97 217 0.443589744 0.914912281
## 443  0.596 0.404 zero Group1 173 1043   97 217 0.443589744 0.914912281
## 232  0.590 0.410 zero Group1 175 1041   99 215 0.448717949 0.913157895
## 972  0.590 0.410  one Group1 175 1041   99 215 0.448717949 0.913157895
## 1050 0.590 0.410  one Group1 175 1041   99 215 0.448717949 0.913157895
## 1271 0.590 0.410 zero Group1 175 1041   99 215 0.448717949 0.913157895
## 738  0.588 0.412  one Group1 177 1041   99 213 0.453846154 0.913157895
## 1213 0.588 0.412  one Group1 177 1041   99 213 0.453846154 0.913157895
## 100  0.586 0.414  one Group1 178 1040  100 212 0.456410256 0.912280702
## 1371 0.586 0.414 zero Group1 178 1040  100 212 0.456410256 0.912280702
## 1119 0.584 0.416  one Group1 180 1040  100 210 0.461538462 0.912280702
## 1468 0.584 0.416  one Group1 180 1040  100 210 0.461538462 0.912280702
## 795  0.578 0.422 zero Group1 181 1038  102 209 0.464102564 0.910526316
## 841  0.578 0.422 zero Group1 181 1038  102 209 0.464102564 0.910526316
## 897  0.578 0.422  one Group1 181 1038  102 209 0.464102564 0.910526316
## 303  0.576 0.424 zero Group1 183 1036  104 207 0.469230769 0.908771930
## 658  0.576 0.424  one Group1 183 1036  104 207 0.469230769 0.908771930
## 739  0.576 0.424  one Group1 183 1036  104 207 0.469230769 0.908771930
## 765  0.576 0.424 zero Group1 183 1036  104 207 0.469230769 0.908771930
## 248  0.574 0.426  one Group1 186 1035  105 204 0.476923077 0.907894737
## 1101 0.574 0.426  one Group1 186 1035  105 204 0.476923077 0.907894737
## 1291 0.574 0.426  one Group1 186 1035  105 204 0.476923077 0.907894737
## 1481 0.574 0.426 zero Group1 186 1035  105 204 0.476923077 0.907894737
## 99   0.572 0.428  one Group1 190 1034  106 200 0.487179487 0.907017544
## 221  0.572 0.428 zero Group1 190 1034  106 200 0.487179487 0.907017544
## 930  0.572 0.428  one Group1 190 1034  106 200 0.487179487 0.907017544
## 1032 0.572 0.428  one Group1 190 1034  106 200 0.487179487 0.907017544
## 1311 0.572 0.428  one Group1 190 1034  106 200 0.487179487 0.907017544
## 1020 0.570 0.430 zero Group1 192 1033  107 198 0.492307692 0.906140351
## 1282 0.570 0.430  one Group1 192 1033  107 198 0.492307692 0.906140351
## 1314 0.570 0.430  one Group1 192 1033  107 198 0.492307692 0.906140351
## 826  0.568 0.432  one Group1 194 1032  108 196 0.497435897 0.905263158
## 901  0.568 0.432  one Group1 194 1032  108 196 0.497435897 0.905263158
## 1208 0.568 0.432 zero Group1 194 1032  108 196 0.497435897 0.905263158
## 296  0.566 0.434 zero Group1 196 1031  109 194 0.502564103 0.904385965
## 591  0.566 0.434  one Group1 196 1031  109 194 0.502564103 0.904385965
## 737  0.566 0.434  one Group1 196 1031  109 194 0.502564103 0.904385965
## 72   0.564 0.436 zero Group1 197 1030  110 193 0.505128205 0.903508772
## 1283 0.564 0.436  one Group1 197 1030  110 193 0.505128205 0.903508772
## 566  0.562 0.438 zero Group1 197 1029  111 193 0.505128205 0.902631579
## 1202 0.560 0.440 zero Group1 197 1028  112 193 0.505128205 0.901754386
## 637  0.558 0.442  one Group1 200 1027  113 190 0.512820513 0.900877193
## 1034 0.558 0.442 zero Group1 200 1027  113 190 0.512820513 0.900877193
## 1290 0.558 0.442  one Group1 200 1027  113 190 0.512820513 0.900877193
## 1389 0.558 0.442  one Group1 200 1027  113 190 0.512820513 0.900877193
## 1033 0.556 0.444 zero Group1 201 1026  114 189 0.515384615 0.900000000
## 1462 0.556 0.444  one Group1 201 1026  114 189 0.515384615 0.900000000
## 907  0.554 0.446 zero Group1 202 1024  116 188 0.517948718 0.898245614
## 1121 0.554 0.446  one Group1 202 1024  116 188 0.517948718 0.898245614
## 1419 0.554 0.446 zero Group1 202 1024  116 188 0.517948718 0.898245614
## 557  0.552 0.448  one Group1 204 1023  117 186 0.523076923 0.897368421
## 1170 0.552 0.448 zero Group1 204 1023  117 186 0.523076923 0.897368421
## 1360 0.552 0.448  one Group1 204 1023  117 186 0.523076923 0.897368421
## 1356 0.548 0.452  one Group1 205 1023  117 185 0.525641026 0.897368421
## 258  0.546 0.454 zero Group1 206 1022  118 184 0.528205128 0.896491228
## 661  0.546 0.454  one Group1 206 1022  118 184 0.528205128 0.896491228
## 30   0.544 0.456 zero Group1 208 1020  120 182 0.533333333 0.894736842
## 41   0.544 0.456 zero Group1 208 1020  120 182 0.533333333 0.894736842
## 240  0.544 0.456  one Group1 208 1020  120 182 0.533333333 0.894736842
## 1212 0.544 0.456  one Group1 208 1020  120 182 0.533333333 0.894736842
## 136  0.542 0.458  one Group1 209 1018  122 181 0.535897436 0.892982456
## 332  0.542 0.458 zero Group1 209 1018  122 181 0.535897436 0.892982456
## 1377 0.542 0.458 zero Group1 209 1018  122 181 0.535897436 0.892982456
## 543  0.540 0.460 zero Group1 210 1016  124 180 0.538461538 0.891228070
## 562  0.540 0.460  one Group1 210 1016  124 180 0.538461538 0.891228070
## 681  0.540 0.460 zero Group1 210 1016  124 180 0.538461538 0.891228070
## 497  0.538 0.462 zero Group1 211 1015  125 179 0.541025641 0.890350877
## 1390 0.538 0.462  one Group1 211 1015  125 179 0.541025641 0.890350877
## 338  0.536 0.464  one Group1 214 1015  125 176 0.548717949 0.890350877
## 580  0.536 0.464  one Group1 214 1015  125 176 0.548717949 0.890350877
## 664  0.536 0.464  one Group1 214 1015  125 176 0.548717949 0.890350877
## 45   0.534 0.466 zero Group1 214 1013  127 176 0.548717949 0.888596491
## 158  0.534 0.466 zero Group1 214 1013  127 176 0.548717949 0.888596491
## 997  0.532 0.468 zero Group1 214 1012  128 176 0.548717949 0.887719298
## 554  0.530 0.470 zero Group1 215 1009  131 175 0.551282051 0.885087719
## 668  0.530 0.470 zero Group1 215 1009  131 175 0.551282051 0.885087719
## 823  0.530 0.470  one Group1 215 1009  131 175 0.551282051 0.885087719
## 1131 0.530 0.470 zero Group1 215 1009  131 175 0.551282051 0.885087719
## 1422 0.528 0.472 zero Group1 215 1008  132 175 0.551282051 0.884210526
## 227  0.526 0.474 zero Group1 215 1007  133 175 0.551282051 0.883333333
## 197  0.522 0.478 zero Group1 215 1004  136 175 0.551282051 0.880701754
## 676  0.522 0.478 zero Group1 215 1004  136 175 0.551282051 0.880701754
## 1402 0.522 0.478 zero Group1 215 1004  136 175 0.551282051 0.880701754
## 957  0.520 0.480  one Group1 216 1004  136 174 0.553846154 0.880701754
## 808  0.518 0.482  one Group1 217 1003  137 173 0.556410256 0.879824561
## 1404 0.518 0.482 zero Group1 217 1003  137 173 0.556410256 0.879824561
## 1169 0.516 0.484 zero Group1 218 1002  138 172 0.558974359 0.878947368
## 1382 0.516 0.484  one Group1 218 1002  138 172 0.558974359 0.878947368
## 205  0.514 0.486 zero Group1 218 1001  139 172 0.558974359 0.878070175
## 1472 0.512 0.488 zero Group1 218 1000  140 172 0.558974359 0.877192982
## 242  0.508 0.492  one Group1 219  999  141 171 0.561538462 0.876315789
## 295  0.508 0.492 zero Group1 219  999  141 171 0.561538462 0.876315789
## 512  0.504 0.496 zero Group1 219  998  142 171 0.561538462 0.875438596
## 590  0.500 0.500 zero Group1 219  996  144 171 0.561538462 0.873684211
## 696  0.500 0.500 zero Group1 219  996  144 171 0.561538462 0.873684211
## 496  0.498 0.502 zero Group1 219  995  145 171 0.561538462 0.872807018
## 729  0.496 0.504  one Group1 220  995  145 170 0.564102564 0.872807018
## 744  0.494 0.506 zero Group1 220  994  146 170 0.564102564 0.871929825
## 46   0.490 0.510 zero Group1 220  989  151 170 0.564102564 0.867543860
## 353  0.490 0.510 zero Group1 220  989  151 170 0.564102564 0.867543860
## 474  0.490 0.510 zero Group1 220  989  151 170 0.564102564 0.867543860
## 691  0.490 0.510 zero Group1 220  989  151 170 0.564102564 0.867543860
## 697  0.490 0.510 zero Group1 220  989  151 170 0.564102564 0.867543860
## 68   0.488 0.512 zero Group1 222  988  152 168 0.569230769 0.866666667
## 312  0.488 0.512  one Group1 222  988  152 168 0.569230769 0.866666667
## 1381 0.488 0.512  one Group1 222  988  152 168 0.569230769 0.866666667
## 571  0.486 0.514 zero Group1 222  986  154 168 0.569230769 0.864912281
## 1299 0.486 0.514 zero Group1 222  986  154 168 0.569230769 0.864912281
## 213  0.484 0.516 zero Group1 224  984  156 166 0.574358974 0.863157895
## 339  0.484 0.516  one Group1 224  984  156 166 0.574358974 0.863157895
## 398  0.484 0.516 zero Group1 224  984  156 166 0.574358974 0.863157895
## 1143 0.484 0.516  one Group1 224  984  156 166 0.574358974 0.863157895
## 81   0.482 0.518 zero Group1 225  980  160 165 0.576923077 0.859649123
## 725  0.482 0.518 zero Group1 225  980  160 165 0.576923077 0.859649123
## 785  0.482 0.518 zero Group1 225  980  160 165 0.576923077 0.859649123
## 959  0.482 0.518  one Group1 225  980  160 165 0.576923077 0.859649123
## 1518 0.482 0.518 zero Group1 225  980  160 165 0.576923077 0.859649123
## 639  0.480 0.520 zero Group1 225  974  166 165 0.576923077 0.854385965
## 704  0.480 0.520 zero Group1 225  974  166 165 0.576923077 0.854385965
## 1056 0.480 0.520 zero Group1 225  974  166 165 0.576923077 0.854385965
## 1244 0.480 0.520 zero Group1 225  974  166 165 0.576923077 0.854385965
## 1298 0.480 0.520 zero Group1 225  974  166 165 0.576923077 0.854385965
## 1424 0.480 0.520 zero Group1 225  974  166 165 0.576923077 0.854385965
## 15   0.478 0.522 zero Group1 227  973  167 163 0.582051282 0.853508772
## 387  0.478 0.522  one Group1 227  973  167 163 0.582051282 0.853508772
## 657  0.478 0.522  one Group1 227  973  167 163 0.582051282 0.853508772
## 167  0.476 0.524  one Group1 229  972  168 161 0.587179487 0.852631579
## 958  0.476 0.524  one Group1 229  972  168 161 0.587179487 0.852631579
## 1057 0.476 0.524 zero Group1 229  972  168 161 0.587179487 0.852631579
## 547  0.474 0.526 zero Group1 229  969  171 161 0.587179487 0.850000000
## 685  0.474 0.526 zero Group1 229  969  171 161 0.587179487 0.850000000
## 775  0.474 0.526 zero Group1 229  969  171 161 0.587179487 0.850000000
## 181  0.472 0.528 zero Group1 230  966  174 160 0.589743590 0.847368421
## 254  0.472 0.528 zero Group1 230  966  174 160 0.589743590 0.847368421
## 577  0.472 0.528  one Group1 230  966  174 160 0.589743590 0.847368421
## 675  0.472 0.528 zero Group1 230  966  174 160 0.589743590 0.847368421
## 174  0.470 0.530  one Group1 233  966  174 157 0.597435897 0.847368421
## 655  0.470 0.530  one Group1 233  966  174 157 0.597435897 0.847368421
## 876  0.470 0.530  one Group1 233  966  174 157 0.597435897 0.847368421
## 277  0.468 0.532 zero Group1 233  961  179 157 0.597435897 0.842982456
## 290  0.468 0.532 zero Group1 233  961  179 157 0.597435897 0.842982456
## 424  0.468 0.532 zero Group1 233  961  179 157 0.597435897 0.842982456
## 762  0.468 0.532 zero Group1 233  961  179 157 0.597435897 0.842982456
## 1353 0.468 0.532 zero Group1 233  961  179 157 0.597435897 0.842982456
## 21   0.466 0.534 zero Group1 234  960  180 156 0.600000000 0.842105263
## 824  0.466 0.534  one Group1 234  960  180 156 0.600000000 0.842105263
## 69   0.462 0.538 zero Group1 234  958  182 156 0.600000000 0.840350877
## 199  0.462 0.538 zero Group1 234  958  182 156 0.600000000 0.840350877
## 189  0.460 0.540 zero Group1 236  955  185 154 0.605128205 0.837719298
## 777  0.460 0.540 zero Group1 236  955  185 154 0.605128205 0.837719298
## 1044 0.460 0.540  one Group1 236  955  185 154 0.605128205 0.837719298
## 1073 0.460 0.540  one Group1 236  955  185 154 0.605128205 0.837719298
## 1258 0.460 0.540 zero Group1 236  955  185 154 0.605128205 0.837719298
## 79   0.458 0.542 zero Group1 236  951  189 154 0.605128205 0.834210526
## 433  0.458 0.542 zero Group1 236  951  189 154 0.605128205 0.834210526
## 853  0.458 0.542 zero Group1 236  951  189 154 0.605128205 0.834210526
## 1401 0.458 0.542 zero Group1 236  951  189 154 0.605128205 0.834210526
## 556  0.456 0.544  one Group1 238  949  191 152 0.610256410 0.832456140
## 951  0.456 0.544 zero Group1 238  949  191 152 0.610256410 0.832456140
## 1126 0.456 0.544 zero Group1 238  949  191 152 0.610256410 0.832456140
## 1289 0.456 0.544  one Group1 238  949  191 152 0.610256410 0.832456140
## 185  0.454 0.546 zero Group1 239  946  194 151 0.612820513 0.829824561
## 359  0.454 0.546 zero Group1 239  946  194 151 0.612820513 0.829824561
## 629  0.454 0.546  one Group1 239  946  194 151 0.612820513 0.829824561
## 669  0.454 0.546 zero Group1 239  946  194 151 0.612820513 0.829824561
## 506  0.452 0.548 zero Group1 240  944  196 150 0.615384615 0.828070175
## 569  0.452 0.548 zero Group1 240  944  196 150 0.615384615 0.828070175
## 895  0.452 0.548  one Group1 240  944  196 150 0.615384615 0.828070175
## 63   0.450 0.550 zero Group1 240  941  199 150 0.615384615 0.825438596
## 280  0.450 0.550 zero Group1 240  941  199 150 0.615384615 0.825438596
## 779  0.450 0.550 zero Group1 240  941  199 150 0.615384615 0.825438596
## 712  0.448 0.552 zero Group1 240  939  201 150 0.615384615 0.823684211
## 740  0.448 0.552 zero Group1 240  939  201 150 0.615384615 0.823684211
## 709  0.446 0.554 zero Group1 241  936  204 149 0.617948718 0.821052632
## 803  0.446 0.554  one Group1 241  936  204 149 0.617948718 0.821052632
## 1329 0.446 0.554 zero Group1 241  936  204 149 0.617948718 0.821052632
## 1347 0.446 0.554 zero Group1 241  936  204 149 0.617948718 0.821052632
## 595  0.444 0.556  one Group1 244  936  204 146 0.625641026 0.821052632
## 954  0.444 0.556  one Group1 244  936  204 146 0.625641026 0.821052632
## 1383 0.444 0.556  one Group1 244  936  204 146 0.625641026 0.821052632
## 349  0.442 0.558 zero Group1 244  934  206 146 0.625641026 0.819298246
## 1024 0.442 0.558 zero Group1 244  934  206 146 0.625641026 0.819298246
## 830  0.440 0.560  one Group1 245  933  207 145 0.628205128 0.818421053
## 1267 0.440 0.560 zero Group1 245  933  207 145 0.628205128 0.818421053
## 500  0.438 0.562 zero Group1 245  931  209 145 0.628205128 0.816666667
## 1348 0.438 0.562 zero Group1 245  931  209 145 0.628205128 0.816666667
## 910  0.436 0.564 zero Group1 245  928  212 145 0.628205128 0.814035088
## 1268 0.436 0.564 zero Group1 245  928  212 145 0.628205128 0.814035088
## 1453 0.436 0.564 zero Group1 245  928  212 145 0.628205128 0.814035088
## 309  0.432 0.568  one Group1 246  928  212 144 0.630769231 0.814035088
## 397  0.430 0.570 zero Group1 246  926  214 144 0.630769231 0.812280702
## 710  0.430 0.570 zero Group1 246  926  214 144 0.630769231 0.812280702
## 40   0.428 0.572 zero Group1 248  925  215 142 0.635897436 0.811403509
## 228  0.428 0.572  one Group1 248  925  215 142 0.635897436 0.811403509
## 968  0.428 0.572  one Group1 248  925  215 142 0.635897436 0.811403509
## 114  0.426 0.574  one Group1 250  922  218 140 0.641025641 0.808771930
## 268  0.426 0.574 zero Group1 250  922  218 140 0.641025641 0.808771930
## 679  0.426 0.574 zero Group1 250  922  218 140 0.641025641 0.808771930
## 1027 0.426 0.574  one Group1 250  922  218 140 0.641025641 0.808771930
## 1447 0.426 0.574 zero Group1 250  922  218 140 0.641025641 0.808771930
## 89   0.424 0.576 zero Group1 250  921  219 140 0.641025641 0.807894737
## 201  0.422 0.578 zero Group1 250  917  223 140 0.641025641 0.804385965
## 453  0.422 0.578 zero Group1 250  917  223 140 0.641025641 0.804385965
## 1153 0.422 0.578 zero Group1 250  917  223 140 0.641025641 0.804385965
## 1171 0.422 0.578 zero Group1 250  917  223 140 0.641025641 0.804385965
## 13   0.420 0.580 zero Group1 252  916  224 138 0.646153846 0.803508772
## 319  0.420 0.580  one Group1 252  916  224 138 0.646153846 0.803508772
## 904  0.420 0.580  one Group1 252  916  224 138 0.646153846 0.803508772
## 200  0.416 0.584 zero Group1 253  915  225 137 0.648717949 0.802631579
## 585  0.416 0.584  one Group1 253  915  225 137 0.648717949 0.802631579
## 44   0.414 0.586 zero Group1 255  911  229 135 0.653846154 0.799122807
## 238  0.414 0.586 zero Group1 255  911  229 135 0.653846154 0.799122807
## 279  0.414 0.586 zero Group1 255  911  229 135 0.653846154 0.799122807
## 321  0.414 0.586  one Group1 255  911  229 135 0.653846154 0.799122807
## 408  0.414 0.586  one Group1 255  911  229 135 0.653846154 0.799122807
## 1407 0.414 0.586 zero Group1 255  911  229 135 0.653846154 0.799122807
## 435  0.412 0.588 zero Group1 255  904  236 135 0.653846154 0.792982456
## 436  0.412 0.588 zero Group1 255  904  236 135 0.653846154 0.792982456
## 706  0.412 0.588 zero Group1 255  904  236 135 0.653846154 0.792982456
## 778  0.412 0.588 zero Group1 255  904  236 135 0.653846154 0.792982456
## 1139 0.412 0.588 zero Group1 255  904  236 135 0.653846154 0.792982456
## 1182 0.412 0.588 zero Group1 255  904  236 135 0.653846154 0.792982456
## 1487 0.412 0.588 zero Group1 255  904  236 135 0.653846154 0.792982456
## 936  0.410 0.590 zero Group1 255  902  238 135 0.653846154 0.791228070
## 1193 0.410 0.590 zero Group1 255  902  238 135 0.653846154 0.791228070
## 272  0.408 0.592 zero Group1 255  899  241 135 0.653846154 0.788596491
## 1128 0.408 0.592 zero Group1 255  899  241 135 0.653846154 0.788596491
## 1232 0.408 0.592 zero Group1 255  899  241 135 0.653846154 0.788596491
## 156  0.406 0.594 zero Group1 256  898  242 134 0.656410256 0.787719298
## 1049 0.406 0.594  one Group1 256  898  242 134 0.656410256 0.787719298
## 1418 0.404 0.596 zero Group1 256  897  243 134 0.656410256 0.786842105
## 965  0.402 0.598 zero Group1 256  894  246 134 0.656410256 0.784210526
## 1106 0.402 0.598 zero Group1 256  894  246 134 0.656410256 0.784210526
## 1486 0.402 0.598 zero Group1 256  894  246 134 0.656410256 0.784210526
## 564  0.400 0.600  one Group1 257  893  247 133 0.658974359 0.783333333
## 1336 0.400 0.600 zero Group1 257  893  247 133 0.658974359 0.783333333
## 340  0.398 0.602  one Group1 258  891  249 132 0.661538462 0.781578947
## 707  0.398 0.602 zero Group1 258  891  249 132 0.661538462 0.781578947
## 1123 0.398 0.602 zero Group1 258  891  249 132 0.661538462 0.781578947
## 748  0.396 0.604 zero Group1 258  889  251 132 0.661538462 0.779824561
## 1192 0.396 0.604 zero Group1 258  889  251 132 0.661538462 0.779824561
## 106  0.392 0.608 zero Group1 259  886  254 131 0.664102564 0.777192982
## 208  0.392 0.608 zero Group1 259  886  254 131 0.664102564 0.777192982
## 271  0.392 0.608 zero Group1 259  886  254 131 0.664102564 0.777192982
## 420  0.392 0.608  one Group1 259  886  254 131 0.664102564 0.777192982
## 105  0.390 0.610 zero Group1 259  884  256 131 0.664102564 0.775438596
## 514  0.390 0.610 zero Group1 259  884  256 131 0.664102564 0.775438596
## 745  0.388 0.612 zero Group1 260  882  258 130 0.666666667 0.773684211
## 1047 0.388 0.612  one Group1 260  882  258 130 0.666666667 0.773684211
## 1265 0.388 0.612 zero Group1 260  882  258 130 0.666666667 0.773684211
## 521  0.386 0.614  one Group1 261  881  259 129 0.669230769 0.772807018
## 1262 0.386 0.614 zero Group1 261  881  259 129 0.669230769 0.772807018
## 1098 0.384 0.616 zero Group1 262  880  260 128 0.671794872 0.771929825
## 1324 0.384 0.616  one Group1 262  880  260 128 0.671794872 0.771929825
## 640  0.382 0.618 zero Group1 262  877  263 128 0.671794872 0.769298246
## 1087 0.382 0.618 zero Group1 262  877  263 128 0.671794872 0.769298246
## 1159 0.382 0.618 zero Group1 262  877  263 128 0.671794872 0.769298246
## 123  0.380 0.620 zero Group1 265  875  265 125 0.679487179 0.767543860
## 343  0.380 0.620  one Group1 265  875  265 125 0.679487179 0.767543860
## 955  0.380 0.620  one Group1 265  875  265 125 0.679487179 0.767543860
## 974  0.380 0.620  one Group1 265  875  265 125 0.679487179 0.767543860
## 999  0.380 0.620 zero Group1 265  875  265 125 0.679487179 0.767543860
## 49   0.378 0.622 zero Group1 265  870  270 125 0.679487179 0.763157895
## 60   0.378 0.622 zero Group1 265  870  270 125 0.679487179 0.763157895
## 525  0.378 0.622 zero Group1 265  870  270 125 0.679487179 0.763157895
## 643  0.378 0.622 zero Group1 265  870  270 125 0.679487179 0.763157895
## 1520 0.378 0.622 zero Group1 265  870  270 125 0.679487179 0.763157895
## 708  0.376 0.624 zero Group1 265  869  271 125 0.679487179 0.762280702
## 535  0.374 0.626 zero Group1 265  867  273 125 0.679487179 0.760526316
## 690  0.374 0.626 zero Group1 265  867  273 125 0.679487179 0.760526316
## 358  0.372 0.628 zero Group1 265  865  275 125 0.679487179 0.758771930
## 508  0.372 0.628 zero Group1 265  865  275 125 0.679487179 0.758771930
## 393  0.370 0.630  one Group1 267  865  275 123 0.684615385 0.758771930
## 1355 0.370 0.630  one Group1 267  865  275 123 0.684615385 0.758771930
## 74   0.368 0.632 zero Group1 268  863  277 122 0.687179487 0.757017544
## 77   0.368 0.632  one Group1 268  863  277 122 0.687179487 0.757017544
## 991  0.368 0.632 zero Group1 268  863  277 122 0.687179487 0.757017544
## 171  0.366 0.634  one Group1 270  861  279 120 0.692307692 0.755263158
## 465  0.366 0.634 zero Group1 270  861  279 120 0.692307692 0.755263158
## 983  0.366 0.634 zero Group1 270  861  279 120 0.692307692 0.755263158
## 1245 0.366 0.634  one Group1 270  861  279 120 0.692307692 0.755263158
## 445  0.364 0.636 zero Group1 270  860  280 120 0.692307692 0.754385965
## 55   0.362 0.638 zero Group1 270  858  282 120 0.692307692 0.752631579
## 275  0.362 0.638 zero Group1 270  858  282 120 0.692307692 0.752631579
## 470  0.360 0.640 zero Group1 270  857  283 120 0.692307692 0.751754386
## 620  0.358 0.642 zero Group1 270  852  288 120 0.692307692 0.747368421
## 1006 0.358 0.642 zero Group1 270  852  288 120 0.692307692 0.747368421
## 1086 0.358 0.642 zero Group1 270  852  288 120 0.692307692 0.747368421
## 1140 0.358 0.642 zero Group1 270  852  288 120 0.692307692 0.747368421
## 1501 0.358 0.642 zero Group1 270  852  288 120 0.692307692 0.747368421
## 85   0.356 0.644 zero Group1 272  851  289 118 0.697435897 0.746491228
## 798  0.356 0.644  one Group1 272  851  289 118 0.697435897 0.746491228
## 1114 0.356 0.644  one Group1 272  851  289 118 0.697435897 0.746491228
## 786  0.354 0.646 zero Group1 272  850  290 118 0.697435897 0.745614035
## 376  0.352 0.648 zero Group1 273  847  293 117 0.700000000 0.742982456
## 677  0.352 0.648 zero Group1 273  847  293 117 0.700000000 0.742982456
## 814  0.352 0.648 zero Group1 273  847  293 117 0.700000000 0.742982456
## 1246 0.352 0.648  one Group1 273  847  293 117 0.700000000 0.742982456
## 51   0.350 0.650 zero Group1 274  842  298 116 0.702564103 0.738596491
## 542  0.350 0.650 zero Group1 274  842  298 116 0.702564103 0.738596491
## 742  0.350 0.650 zero Group1 274  842  298 116 0.702564103 0.738596491
## 884  0.350 0.650  one Group1 274  842  298 116 0.702564103 0.738596491
## 1326 0.350 0.650 zero Group1 274  842  298 116 0.702564103 0.738596491
## 1338 0.350 0.650 zero Group1 274  842  298 116 0.702564103 0.738596491
## 98   0.348 0.652 zero Group1 275  838  302 115 0.705128205 0.735087719
## 184  0.348 0.652 zero Group1 275  838  302 115 0.705128205 0.735087719
## 214  0.348 0.652 zero Group1 275  838  302 115 0.705128205 0.735087719
## 926  0.348 0.652 zero Group1 275  838  302 115 0.705128205 0.735087719
## 1357 0.348 0.652  one Group1 275  838  302 115 0.705128205 0.735087719
## 103  0.346 0.654  one Group1 277  834  306 113 0.710256410 0.731578947
## 717  0.346 0.654 zero Group1 277  834  306 113 0.710256410 0.731578947
## 898  0.346 0.654  one Group1 277  834  306 113 0.710256410 0.731578947
## 939  0.346 0.654 zero Group1 277  834  306 113 0.710256410 0.731578947
## 1210 0.346 0.654 zero Group1 277  834  306 113 0.710256410 0.731578947
## 1400 0.346 0.654 zero Group1 277  834  306 113 0.710256410 0.731578947
## 66   0.344 0.656 zero Group1 277  828  312 113 0.710256410 0.726315789
## 253  0.344 0.656 zero Group1 277  828  312 113 0.710256410 0.726315789
## 949  0.344 0.656 zero Group1 277  828  312 113 0.710256410 0.726315789
## 1354 0.344 0.656 zero Group1 277  828  312 113 0.710256410 0.726315789
## 1398 0.344 0.656 zero Group1 277  828  312 113 0.710256410 0.726315789
## 1415 0.344 0.656 zero Group1 277  828  312 113 0.710256410 0.726315789
## 237  0.342 0.658 zero Group1 278  827  313 112 0.712820513 0.725438596
## 567  0.342 0.658  one Group1 278  827  313 112 0.712820513 0.725438596
## 22   0.340 0.660 zero Group1 278  820  320 112 0.712820513 0.719298246
## 204  0.340 0.660 zero Group1 278  820  320 112 0.712820513 0.719298246
## 292  0.340 0.660 zero Group1 278  820  320 112 0.712820513 0.719298246
## 455  0.340 0.660 zero Group1 278  820  320 112 0.712820513 0.719298246
## 641  0.340 0.660 zero Group1 278  820  320 112 0.712820513 0.719298246
## 849  0.340 0.660 zero Group1 278  820  320 112 0.712820513 0.719298246
## 1380 0.340 0.660 zero Group1 278  820  320 112 0.712820513 0.719298246
## 313  0.338 0.662  one Group1 280  818  322 110 0.717948718 0.717543860
## 964  0.338 0.662 zero Group1 280  818  322 110 0.717948718 0.717543860
## 1470 0.338 0.662  one Group1 280  818  322 110 0.717948718 0.717543860
## 1512 0.338 0.662 zero Group1 280  818  322 110 0.717948718 0.717543860
## 223  0.336 0.664 zero Group1 281  815  325 109 0.720512821 0.714912281
## 246  0.336 0.664  one Group1 281  815  325 109 0.720512821 0.714912281
## 1259 0.336 0.664 zero Group1 281  815  325 109 0.720512821 0.714912281
## 1260 0.336 0.664 zero Group1 281  815  325 109 0.720512821 0.714912281
## 758  0.334 0.666 zero Group1 281  814  326 109 0.720512821 0.714035088
## 873  0.332 0.668 zero Group1 283  813  327 107 0.725641026 0.713157895
## 1250 0.332 0.668  one Group1 283  813  327 107 0.725641026 0.713157895
## 1465 0.332 0.668  one Group1 283  813  327 107 0.725641026 0.713157895
## 38   0.330 0.670 zero Group1 285  807  333 105 0.730769231 0.707894737
## 94   0.330 0.670 zero Group1 285  807  333 105 0.730769231 0.707894737
## 323  0.330 0.670 zero Group1 285  807  333 105 0.730769231 0.707894737
## 494  0.330 0.670  one Group1 285  807  333 105 0.730769231 0.707894737
## 913  0.330 0.670 zero Group1 285  807  333 105 0.730769231 0.707894737
## 916  0.330 0.670 zero Group1 285  807  333 105 0.730769231 0.707894737
## 1003 0.330 0.670 zero Group1 285  807  333 105 0.730769231 0.707894737
## 1459 0.330 0.670  one Group1 285  807  333 105 0.730769231 0.707894737
## 716  0.326 0.674 zero Group1 286  804  336 104 0.733333333 0.705263158
## 902  0.326 0.674  one Group1 286  804  336 104 0.733333333 0.705263158
## 963  0.326 0.674 zero Group1 286  804  336 104 0.733333333 0.705263158
## 1269 0.326 0.674 zero Group1 286  804  336 104 0.733333333 0.705263158
## 101  0.324 0.676  one Group1 287  799  341 103 0.735897436 0.700877193
## 667  0.324 0.676 zero Group1 287  799  341 103 0.735897436 0.700877193
## 1007 0.324 0.676 zero Group1 287  799  341 103 0.735897436 0.700877193
## 1021 0.324 0.676 zero Group1 287  799  341 103 0.735897436 0.700877193
## 1107 0.324 0.676 zero Group1 287  799  341 103 0.735897436 0.700877193
## 1199 0.324 0.676 zero Group1 287  799  341 103 0.735897436 0.700877193
## 998  0.322 0.678 zero Group1 287  794  346 103 0.735897436 0.696491228
## 1111 0.322 0.678 zero Group1 287  794  346 103 0.735897436 0.696491228
## 1220 0.322 0.678 zero Group1 287  794  346 103 0.735897436 0.696491228
## 1303 0.322 0.678 zero Group1 287  794  346 103 0.735897436 0.696491228
## 1471 0.322 0.678 zero Group1 287  794  346 103 0.735897436 0.696491228
## 355  0.320 0.680 zero Group1 288  793  347 102 0.738461538 0.695614035
## 829  0.320 0.680  one Group1 288  793  347 102 0.738461538 0.695614035
## 241  0.316 0.684  one Group1 289  788  352 101 0.741025641 0.691228070
## 747  0.316 0.684 zero Group1 289  788  352 101 0.741025641 0.691228070
## 914  0.316 0.684 zero Group1 289  788  352 101 0.741025641 0.691228070
## 1264 0.316 0.684 zero Group1 289  788  352 101 0.741025641 0.691228070
## 1293 0.316 0.684 zero Group1 289  788  352 101 0.741025641 0.691228070
## 1297 0.316 0.684 zero Group1 289  788  352 101 0.741025641 0.691228070
## 274  0.314 0.686 zero Group1 289  787  353 101 0.741025641 0.690350877
## 534  0.312 0.688 zero Group1 289  784  356 101 0.741025641 0.687719298
## 612  0.312 0.688 zero Group1 289  784  356 101 0.741025641 0.687719298
## 1163 0.312 0.688 zero Group1 289  784  356 101 0.741025641 0.687719298
## 211  0.310 0.690 zero Group1 290  781  359 100 0.743589744 0.685087719
## 956  0.310 0.690  one Group1 290  781  359 100 0.743589744 0.685087719
## 962  0.310 0.690 zero Group1 290  781  359 100 0.743589744 0.685087719
## 1022 0.310 0.690 zero Group1 290  781  359 100 0.743589744 0.685087719
## 374  0.308 0.692  one Group1 292  777  363  98 0.748717949 0.681578947
## 456  0.308 0.692 zero Group1 292  777  363  98 0.748717949 0.681578947
## 546  0.308 0.692 zero Group1 292  777  363  98 0.748717949 0.681578947
## 597  0.308 0.692 zero Group1 292  777  363  98 0.748717949 0.681578947
## 711  0.308 0.692 zero Group1 292  777  363  98 0.748717949 0.681578947
## 1144 0.308 0.692  one Group1 292  777  363  98 0.748717949 0.681578947
## 650  0.306 0.694 zero Group1 292  774  366  98 0.748717949 0.678947368
## 860  0.306 0.694 zero Group1 292  774  366  98 0.748717949 0.678947368
## 1343 0.306 0.694 zero Group1 292  774  366  98 0.748717949 0.678947368
## 235  0.304 0.696 zero Group1 293  771  369  97 0.751282051 0.676315789
## 444  0.304 0.696 zero Group1 293  771  369  97 0.751282051 0.676315789
## 977  0.304 0.696  one Group1 293  771  369  97 0.751282051 0.676315789
## 1127 0.304 0.696 zero Group1 293  771  369  97 0.751282051 0.676315789
## 2    0.302 0.698 zero Group1 294  766  374  96 0.753846154 0.671929825
## 12   0.302 0.698 zero Group1 294  766  374  96 0.753846154 0.671929825
## 370  0.302 0.698 zero Group1 294  766  374  96 0.753846154 0.671929825
## 698  0.302 0.698 zero Group1 294  766  374  96 0.753846154 0.671929825
## 1363 0.302 0.698  one Group1 294  766  374  96 0.753846154 0.671929825
## 1448 0.302 0.698 zero Group1 294  766  374  96 0.753846154 0.671929825
## 19   0.300 0.700 zero Group1 294  763  377  96 0.753846154 0.669298246
## 1223 0.300 0.700 zero Group1 294  763  377  96 0.753846154 0.669298246
## 1437 0.300 0.700 zero Group1 294  763  377  96 0.753846154 0.669298246
## 87   0.298 0.702 zero Group1 295  761  379  95 0.756410256 0.667543860
## 196  0.298 0.702 zero Group1 295  761  379  95 0.756410256 0.667543860
## 659  0.298 0.702  one Group1 295  761  379  95 0.756410256 0.667543860
## 282  0.296 0.704 zero Group1 295  756  384  95 0.756410256 0.663157895
## 475  0.296 0.704 zero Group1 295  756  384  95 0.756410256 0.663157895
## 864  0.296 0.704 zero Group1 295  756  384  95 0.756410256 0.663157895
## 1077 0.296 0.704 zero Group1 295  756  384  95 0.756410256 0.663157895
## 1243 0.296 0.704 zero Group1 295  756  384  95 0.756410256 0.663157895
## 17   0.294 0.706 zero Group1 295  750  390  95 0.756410256 0.657894737
## 95   0.294 0.706 zero Group1 295  750  390  95 0.756410256 0.657894737
## 644  0.294 0.706 zero Group1 295  750  390  95 0.756410256 0.657894737
## 928  0.294 0.706 zero Group1 295  750  390  95 0.756410256 0.657894737
## 1051 0.294 0.706 zero Group1 295  750  390  95 0.756410256 0.657894737
## 1085 0.294 0.706 zero Group1 295  750  390  95 0.756410256 0.657894737
## 601  0.292 0.708 zero Group1 295  747  393  95 0.756410256 0.655263158
## 653  0.292 0.708 zero Group1 295  747  393  95 0.756410256 0.655263158
## 1229 0.292 0.708 zero Group1 295  747  393  95 0.756410256 0.655263158
## 23   0.290 0.710 zero Group1 299  744  396  91 0.766666667 0.652631579
## 102  0.290 0.710  one Group1 299  744  396  91 0.766666667 0.652631579
## 127  0.290 0.710 zero Group1 299  744  396  91 0.766666667 0.652631579
## 392  0.290 0.710  one Group1 299  744  396  91 0.766666667 0.652631579
## 485  0.290 0.710  one Group1 299  744  396  91 0.766666667 0.652631579
## 1174 0.290 0.710  one Group1 299  744  396  91 0.766666667 0.652631579
## 1330 0.290 0.710 zero Group1 299  744  396  91 0.766666667 0.652631579
## 626  0.288 0.712 zero Group1 299  742  398  91 0.766666667 0.650877193
## 1094 0.288 0.712 zero Group1 299  742  398  91 0.766666667 0.650877193
## 210  0.286 0.714 zero Group1 299  739  401  91 0.766666667 0.648245614
## 428  0.286 0.714 zero Group1 299  739  401  91 0.766666667 0.648245614
## 1097 0.286 0.714 zero Group1 299  739  401  91 0.766666667 0.648245614
## 220  0.284 0.716 zero Group1 300  735  405  90 0.769230769 0.644736842
## 817  0.284 0.716 zero Group1 300  735  405  90 0.769230769 0.644736842
## 971  0.284 0.716  one Group1 300  735  405  90 0.769230769 0.644736842
## 1403 0.284 0.716 zero Group1 300  735  405  90 0.769230769 0.644736842
## 1473 0.284 0.716 zero Group1 300  735  405  90 0.769230769 0.644736842
## 593  0.282 0.718  one Group1 301  734  406  89 0.771794872 0.643859649
## 1149 0.282 0.718 zero Group1 301  734  406  89 0.771794872 0.643859649
## 457  0.280 0.720 zero Group1 302  733  407  88 0.774358974 0.642982456
## 582  0.280 0.720  one Group1 302  733  407  88 0.774358974 0.642982456
## 270  0.278 0.722 zero Group1 302  731  409  88 0.774358974 0.641228070
## 352  0.278 0.722 zero Group1 302  731  409  88 0.774358974 0.641228070
## 10   0.276 0.724 zero Group1 305  728  412  85 0.782051282 0.638596491
## 35   0.276 0.724 zero Group1 305  728  412  85 0.782051282 0.638596491
## 1046 0.276 0.724  one Group1 305  728  412  85 0.782051282 0.638596491
## 1074 0.276 0.724  one Group1 305  728  412  85 0.782051282 0.638596491
## 1325 0.276 0.724 zero Group1 305  728  412  85 0.782051282 0.638596491
## 1387 0.276 0.724  one Group1 305  728  412  85 0.782051282 0.638596491
## 269  0.274 0.726 zero Group1 305  726  414  85 0.782051282 0.636842105
## 327  0.274 0.726 zero Group1 305  726  414  85 0.782051282 0.636842105
## 759  0.272 0.728 zero Group1 306  723  417  84 0.784615385 0.634210526
## 882  0.272 0.728  one Group1 306  723  417  84 0.784615385 0.634210526
## 933  0.272 0.728 zero Group1 306  723  417  84 0.784615385 0.634210526
## 1168 0.272 0.728 zero Group1 306  723  417  84 0.784615385 0.634210526
## 1474 0.270 0.730 zero Group1 306  722  418  84 0.784615385 0.633333333
## 249  0.268 0.732 zero Group1 307  714  426  83 0.787179487 0.626315789
## 330  0.268 0.732 zero Group1 307  714  426  83 0.787179487 0.626315789
## 495  0.268 0.732 zero Group1 307  714  426  83 0.787179487 0.626315789
## 517  0.268 0.732 zero Group1 307  714  426  83 0.787179487 0.626315789
## 613  0.268 0.732 zero Group1 307  714  426  83 0.787179487 0.626315789
## 680  0.268 0.732 zero Group1 307  714  426  83 0.787179487 0.626315789
## 1179 0.268 0.732 zero Group1 307  714  426  83 0.787179487 0.626315789
## 1215 0.268 0.732  one Group1 307  714  426  83 0.787179487 0.626315789
## 1530 0.268 0.732 zero Group1 307  714  426  83 0.787179487 0.626315789
## 179  0.266 0.734 zero Group1 308  711  429  82 0.789743590 0.623684211
## 834  0.266 0.734 zero Group1 308  711  429  82 0.789743590 0.623684211
## 1071 0.266 0.734  one Group1 308  711  429  82 0.789743590 0.623684211
## 1442 0.266 0.734 zero Group1 308  711  429  82 0.789743590 0.623684211
## 18   0.264 0.736 zero Group1 309  705  435  81 0.792307692 0.618421053
## 276  0.264 0.736 zero Group1 309  705  435  81 0.792307692 0.618421053
## 868  0.264 0.736 zero Group1 309  705  435  81 0.792307692 0.618421053
## 1009 0.264 0.736 zero Group1 309  705  435  81 0.792307692 0.618421053
## 1242 0.264 0.736 zero Group1 309  705  435  81 0.792307692 0.618421053
## 1323 0.264 0.736  one Group1 309  705  435  81 0.792307692 0.618421053
## 1499 0.264 0.736 zero Group1 309  705  435  81 0.792307692 0.618421053
## 322  0.262 0.738 zero Group1 310  701  439  80 0.794871795 0.614912281
## 714  0.262 0.738 zero Group1 310  701  439  80 0.794871795 0.614912281
## 923  0.262 0.738 zero Group1 310  701  439  80 0.794871795 0.614912281
## 1248 0.262 0.738  one Group1 310  701  439  80 0.794871795 0.614912281
## 1340 0.262 0.738 zero Group1 310  701  439  80 0.794871795 0.614912281
## 222  0.258 0.742 zero Group1 312  698  442  78 0.800000000 0.612280702
## 233  0.258 0.742 zero Group1 312  698  442  78 0.800000000 0.612280702
## 844  0.258 0.742 zero Group1 312  698  442  78 0.800000000 0.612280702
## 1284 0.258 0.742  one Group1 312  698  442  78 0.800000000 0.612280702
## 1395 0.258 0.742  one Group1 312  698  442  78 0.800000000 0.612280702
## 190  0.256 0.744 zero Group1 312  692  448  78 0.800000000 0.607017544
## 533  0.256 0.744 zero Group1 312  692  448  78 0.800000000 0.607017544
## 1000 0.256 0.744 zero Group1 312  692  448  78 0.800000000 0.607017544
## 1063 0.256 0.744 zero Group1 312  692  448  78 0.800000000 0.607017544
## 1064 0.256 0.744 zero Group1 312  692  448  78 0.800000000 0.607017544
## 1129 0.256 0.744 zero Group1 312  692  448  78 0.800000000 0.607017544
## 431  0.254 0.746 zero Group1 312  689  451  78 0.800000000 0.604385965
## 850  0.254 0.746 zero Group1 312  689  451  78 0.800000000 0.604385965
## 1137 0.254 0.746 zero Group1 312  689  451  78 0.800000000 0.604385965
## 263  0.252 0.748 zero Group1 312  684  456  78 0.800000000 0.600000000
## 619  0.252 0.748 zero Group1 312  684  456  78 0.800000000 0.600000000
## 790  0.252 0.748 zero Group1 312  684  456  78 0.800000000 0.600000000
## 915  0.252 0.748 zero Group1 312  684  456  78 0.800000000 0.600000000
## 922  0.252 0.748 zero Group1 312  684  456  78 0.800000000 0.600000000
## 148  0.250 0.750  one Group1 315  683  457  75 0.807692308 0.599122807
## 418  0.250 0.750  one Group1 315  683  457  75 0.807692308 0.599122807
## 544  0.250 0.750 zero Group1 315  683  457  75 0.807692308 0.599122807
## 1099 0.250 0.750  one Group1 315  683  457  75 0.807692308 0.599122807
## 177  0.248 0.752 zero Group1 315  680  460  75 0.807692308 0.596491228
## 182  0.248 0.752 zero Group1 315  680  460  75 0.807692308 0.596491228
## 943  0.248 0.752 zero Group1 315  680  460  75 0.807692308 0.596491228
## 194  0.246 0.754 zero Group1 316  676  464  74 0.810256410 0.592982456
## 224  0.246 0.754 zero Group1 316  676  464  74 0.810256410 0.592982456
## 386  0.246 0.754  one Group1 316  676  464  74 0.810256410 0.592982456
## 526  0.246 0.754 zero Group1 316  676  464  74 0.810256410 0.592982456
## 1434 0.246 0.754 zero Group1 316  676  464  74 0.810256410 0.592982456
## 381  0.244 0.756 zero Group1 319  672  468  71 0.817948718 0.589473684
## 448  0.244 0.756  one Group1 319  672  468  71 0.817948718 0.589473684
## 635  0.244 0.756  one Group1 319  672  468  71 0.817948718 0.589473684
## 660  0.244 0.756  one Group1 319  672  468  71 0.817948718 0.589473684
## 866  0.244 0.756 zero Group1 319  672  468  71 0.817948718 0.589473684
## 906  0.244 0.756 zero Group1 319  672  468  71 0.817948718 0.589473684
## 1041 0.244 0.756 zero Group1 319  672  468  71 0.817948718 0.589473684
## 56   0.242 0.758 zero Group1 321  669  471  69 0.823076923 0.586842105
## 656  0.242 0.758  one Group1 321  669  471  69 0.823076923 0.586842105
## 1160 0.242 0.758 zero Group1 321  669  471  69 0.823076923 0.586842105
## 1345 0.242 0.758 zero Group1 321  669  471  69 0.823076923 0.586842105
## 1461 0.242 0.758  one Group1 321  669  471  69 0.823076923 0.586842105
## 1216 0.240 0.760  one Group1 322  667  473  68 0.825641026 0.585087719
## 1304 0.240 0.760 zero Group1 322  667  473  68 0.825641026 0.585087719
## 1410 0.240 0.760 zero Group1 322  667  473  68 0.825641026 0.585087719
## 150  0.238 0.762  one Group1 324  667  473  66 0.830769231 0.585087719
## 1029 0.238 0.762  one Group1 324  667  473  66 0.830769231 0.585087719
## 662  0.236 0.764  one Group1 325  665  475  65 0.833333333 0.583333333
## 763  0.236 0.764 zero Group1 325  665  475  65 0.833333333 0.583333333
## 1426 0.236 0.764 zero Group1 325  665  475  65 0.833333333 0.583333333
## 50   0.234 0.766 zero Group1 325  661  479  65 0.833333333 0.579824561
## 950  0.234 0.766 zero Group1 325  661  479  65 0.833333333 0.579824561
## 988  0.234 0.766 zero Group1 325  661  479  65 0.833333333 0.579824561
## 1475 0.234 0.766 zero Group1 325  661  479  65 0.833333333 0.579824561
## 333  0.232 0.768 zero Group1 328  656  484  62 0.841025641 0.575438596
## 565  0.232 0.768  one Group1 328  656  484  62 0.841025641 0.575438596
## 741  0.232 0.768 zero Group1 328  656  484  62 0.841025641 0.575438596
## 937  0.232 0.768 zero Group1 328  656  484  62 0.841025641 0.575438596
## 952  0.232 0.768 zero Group1 328  656  484  62 0.841025641 0.575438596
## 1125 0.232 0.768 zero Group1 328  656  484  62 0.841025641 0.575438596
## 1217 0.232 0.768  one Group1 328  656  484  62 0.841025641 0.575438596
## 1286 0.232 0.768  one Group1 328  656  484  62 0.841025641 0.575438596
## 524  0.230 0.770 zero Group1 328  652  488  62 0.841025641 0.571929825
## 925  0.230 0.770 zero Group1 328  652  488  62 0.841025641 0.571929825
## 1369 0.230 0.770 zero Group1 328  652  488  62 0.841025641 0.571929825
## 1435 0.230 0.770 zero Group1 328  652  488  62 0.841025641 0.571929825
## 384  0.228 0.772 zero Group1 328  647  493  62 0.841025641 0.567543860
## 548  0.228 0.772 zero Group1 328  647  493  62 0.841025641 0.567543860
## 1084 0.228 0.772 zero Group1 328  647  493  62 0.841025641 0.567543860
## 1157 0.228 0.772 zero Group1 328  647  493  62 0.841025641 0.567543860
## 1226 0.228 0.772 zero Group1 328  647  493  62 0.841025641 0.567543860
## 1295 0.226 0.774 zero Group1 328  646  494  62 0.841025641 0.566666667
## 278  0.224 0.776 zero Group1 328  640  500  62 0.841025641 0.561403509
## 843  0.224 0.776 zero Group1 328  640  500  62 0.841025641 0.561403509
## 942  0.224 0.776 zero Group1 328  640  500  62 0.841025641 0.561403509
## 992  0.224 0.776 zero Group1 328  640  500  62 0.841025641 0.561403509
## 1093 0.224 0.776 zero Group1 328  640  500  62 0.841025641 0.561403509
## 1277 0.224 0.776 zero Group1 328  640  500  62 0.841025641 0.561403509
## 84   0.222 0.778 zero Group1 329  633  507  61 0.843589744 0.555263158
## 432  0.222 0.778 zero Group1 329  633  507  61 0.843589744 0.555263158
## 646  0.222 0.778 zero Group1 329  633  507  61 0.843589744 0.555263158
## 978  0.222 0.778 zero Group1 329  633  507  61 0.843589744 0.555263158
## 1035 0.222 0.778 zero Group1 329  633  507  61 0.843589744 0.555263158
## 1142 0.222 0.778  one Group1 329  633  507  61 0.843589744 0.555263158
## 1164 0.222 0.778 zero Group1 329  633  507  61 0.843589744 0.555263158
## 1180 0.222 0.778 zero Group1 329  633  507  61 0.843589744 0.555263158
## 43   0.220 0.780 zero Group1 332  631  509  58 0.851282051 0.553508772
## 317  0.220 0.780  one Group1 332  631  509  58 0.851282051 0.553508772
## 342  0.220 0.780  one Group1 332  631  509  58 0.851282051 0.553508772
## 1156 0.220 0.780 zero Group1 332  631  509  58 0.851282051 0.553508772
## 1214 0.220 0.780  one Group1 332  631  509  58 0.851282051 0.553508772
## 126  0.218 0.782 zero Group1 334  628  512  56 0.856410256 0.550877193
## 265  0.218 0.782 zero Group1 334  628  512  56 0.856410256 0.550877193
## 520  0.218 0.782  one Group1 334  628  512  56 0.856410256 0.550877193
## 584  0.218 0.782  one Group1 334  628  512  56 0.856410256 0.550877193
## 1528 0.218 0.782 zero Group1 334  628  512  56 0.856410256 0.550877193
## 285  0.216 0.784 zero Group1 335  626  514  55 0.858974359 0.549122807
## 1181 0.216 0.784 zero Group1 335  626  514  55 0.858974359 0.549122807
## 1288 0.216 0.784  one Group1 335  626  514  55 0.858974359 0.549122807
## 124  0.214 0.786 zero Group1 337  623  517  53 0.864102564 0.546491228
## 202  0.214 0.786 zero Group1 337  623  517  53 0.864102564 0.546491228
## 581  0.214 0.786  one Group1 337  623  517  53 0.864102564 0.546491228
## 825  0.214 0.786  one Group1 337  623  517  53 0.864102564 0.546491228
## 1349 0.214 0.786 zero Group1 337  623  517  53 0.864102564 0.546491228
## 306  0.212 0.788 zero Group1 338  617  523  52 0.866666667 0.541228070
## 346  0.212 0.788  one Group1 338  617  523  52 0.866666667 0.541228070
## 377  0.212 0.788 zero Group1 338  617  523  52 0.866666667 0.541228070
## 464  0.212 0.788 zero Group1 338  617  523  52 0.866666667 0.541228070
## 503  0.212 0.788 zero Group1 338  617  523  52 0.866666667 0.541228070
## 948  0.212 0.788 zero Group1 338  617  523  52 0.866666667 0.541228070
## 1368 0.212 0.788 zero Group1 338  617  523  52 0.866666667 0.541228070
## 331  0.210 0.790 zero Group1 340  611  529  50 0.871794872 0.535964912
## 410  0.210 0.790  one Group1 340  611  529  50 0.871794872 0.535964912
## 538  0.210 0.790 zero Group1 340  611  529  50 0.871794872 0.535964912
## 572  0.210 0.790 zero Group1 340  611  529  50 0.871794872 0.535964912
## 1118 0.210 0.790  one Group1 340  611  529  50 0.871794872 0.535964912
## 1167 0.210 0.790 zero Group1 340  611  529  50 0.871794872 0.535964912
## 1204 0.210 0.790 zero Group1 340  611  529  50 0.871794872 0.535964912
## 1482 0.210 0.790 zero Group1 340  611  529  50 0.871794872 0.535964912
## 1431 0.208 0.792 zero Group1 340  610  530  50 0.871794872 0.535087719
## 76   0.206 0.794  one Group1 342  605  535  48 0.876923077 0.530701754
## 261  0.206 0.794 zero Group1 342  605  535  48 0.876923077 0.530701754
## 308  0.206 0.794 zero Group1 342  605  535  48 0.876923077 0.530701754
## 811  0.206 0.794  one Group1 342  605  535  48 0.876923077 0.530701754
## 1275 0.206 0.794 zero Group1 342  605  535  48 0.876923077 0.530701754
## 1408 0.206 0.794 zero Group1 342  605  535  48 0.876923077 0.530701754
## 1493 0.206 0.794 zero Group1 342  605  535  48 0.876923077 0.530701754
## 491  0.204 0.796  one Group1 344  603  537  46 0.882051282 0.528947368
## 589  0.204 0.796  one Group1 344  603  537  46 0.882051282 0.528947368
## 781  0.204 0.796 zero Group1 344  603  537  46 0.882051282 0.528947368
## 908  0.204 0.796 zero Group1 344  603  537  46 0.882051282 0.528947368
## 486  0.202 0.798  one Group1 346  602  538  44 0.887179487 0.528070175
## 799  0.202 0.798  one Group1 346  602  538  44 0.887179487 0.528070175
## 1507 0.202 0.798 zero Group1 346  602  538  44 0.887179487 0.528070175
## 4    0.200 0.800 zero Group1 347  594  546  43 0.889743590 0.521052632
## 297  0.200 0.800 zero Group1 347  594  546  43 0.889743590 0.521052632
## 423  0.200 0.800 zero Group1 347  594  546  43 0.889743590 0.521052632
## 568  0.200 0.800 zero Group1 347  594  546  43 0.889743590 0.521052632
## 682  0.200 0.800 zero Group1 347  594  546  43 0.889743590 0.521052632
## 1102 0.200 0.800  one Group1 347  594  546  43 0.889743590 0.521052632
## 1191 0.200 0.800 zero Group1 347  594  546  43 0.889743590 0.521052632
## 1270 0.200 0.800 zero Group1 347  594  546  43 0.889743590 0.521052632
## 1502 0.200 0.800 zero Group1 347  594  546  43 0.889743590 0.521052632
## 266  0.198 0.802 zero Group1 347  587  553  43 0.889743590 0.514912281
## 293  0.198 0.802 zero Group1 347  587  553  43 0.889743590 0.514912281
## 446  0.198 0.802 zero Group1 347  587  553  43 0.889743590 0.514912281
## 545  0.198 0.802 zero Group1 347  587  553  43 0.889743590 0.514912281
## 695  0.198 0.802 zero Group1 347  587  553  43 0.889743590 0.514912281
## 1237 0.198 0.802 zero Group1 347  587  553  43 0.889743590 0.514912281
## 1335 0.198 0.802 zero Group1 347  587  553  43 0.889743590 0.514912281
## 416  0.196 0.804  one Group1 349  585  555  41 0.894871795 0.513157895
## 1183 0.196 0.804 zero Group1 349  585  555  41 0.894871795 0.513157895
## 1233 0.196 0.804 zero Group1 349  585  555  41 0.894871795 0.513157895
## 1320 0.196 0.804  one Group1 349  585  555  41 0.894871795 0.513157895
## 863  0.194 0.806 zero Group1 349  584  556  41 0.894871795 0.512280702
## 481  0.192 0.808 zero Group1 351  581  559  39 0.900000000 0.509649123
## 791  0.192 0.808 zero Group1 351  581  559  39 0.900000000 0.509649123
## 1048 0.192 0.808  one Group1 351  581  559  39 0.900000000 0.509649123
## 1054 0.192 0.808 zero Group1 351  581  559  39 0.900000000 0.509649123
## 1120 0.192 0.808  one Group1 351  581  559  39 0.900000000 0.509649123
## 489  0.190 0.810  one Group1 352  578  562  38 0.902564103 0.507017544
## 720  0.190 0.810 zero Group1 352  578  562  38 0.902564103 0.507017544
## 981  0.190 0.810 zero Group1 352  578  562  38 0.902564103 0.507017544
## 1425 0.190 0.810 zero Group1 352  578  562  38 0.902564103 0.507017544
## 80   0.188 0.812 zero Group1 353  574  566  37 0.905128205 0.503508772
## 178  0.188 0.812 zero Group1 353  574  566  37 0.905128205 0.503508772
## 400  0.188 0.812 zero Group1 353  574  566  37 0.905128205 0.503508772
## 990  0.188 0.812 zero Group1 353  574  566  37 0.905128205 0.503508772
## 1115 0.188 0.812  one Group1 353  574  566  37 0.905128205 0.503508772
## 29   0.186 0.814 zero Group1 353  569  571  37 0.905128205 0.499122807
## 109  0.186 0.814 zero Group1 353  569  571  37 0.905128205 0.499122807
## 257  0.186 0.814 zero Group1 353  569  571  37 0.905128205 0.499122807
## 335  0.186 0.814 zero Group1 353  569  571  37 0.905128205 0.499122807
## 1198 0.186 0.814 zero Group1 353  569  571  37 0.905128205 0.499122807
## 373  0.184 0.816 zero Group1 353  563  577  37 0.905128205 0.493859649
## 437  0.184 0.816 zero Group1 353  563  577  37 0.905128205 0.493859649
## 522  0.184 0.816 zero Group1 353  563  577  37 0.905128205 0.493859649
## 1012 0.184 0.816 zero Group1 353  563  577  37 0.905128205 0.493859649
## 1130 0.184 0.816 zero Group1 353  563  577  37 0.905128205 0.493859649
## 1162 0.184 0.816 zero Group1 353  563  577  37 0.905128205 0.493859649
## 193  0.182 0.818 zero Group1 354  560  580  36 0.907692308 0.491228070
## 541  0.182 0.818 zero Group1 354  560  580  36 0.907692308 0.491228070
## 1318 0.182 0.818  one Group1 354  560  580  36 0.907692308 0.491228070
## 1399 0.182 0.818 zero Group1 354  560  580  36 0.907692308 0.491228070
## 1211 0.180 0.820 zero Group1 354  558  582  36 0.907692308 0.489473684
## 1485 0.180 0.820 zero Group1 354  558  582  36 0.907692308 0.489473684
## 152  0.178 0.822 zero Group1 354  553  587  36 0.907692308 0.485087719
## 354  0.178 0.822 zero Group1 354  553  587  36 0.907692308 0.485087719
## 536  0.178 0.822 zero Group1 354  553  587  36 0.907692308 0.485087719
## 929  0.178 0.822 zero Group1 354  553  587  36 0.907692308 0.485087719
## 1483 0.178 0.822 zero Group1 354  553  587  36 0.907692308 0.485087719
## 37   0.176 0.824 zero Group1 354  547  593  36 0.907692308 0.479824561
## 96   0.176 0.824 zero Group1 354  547  593  36 0.907692308 0.479824561
## 461  0.176 0.824 zero Group1 354  547  593  36 0.907692308 0.479824561
## 993  0.176 0.824 zero Group1 354  547  593  36 0.907692308 0.479824561
## 1166 0.176 0.824 zero Group1 354  547  593  36 0.907692308 0.479824561
## 1230 0.176 0.824 zero Group1 354  547  593  36 0.907692308 0.479824561
## 689  0.174 0.826 zero Group1 355  545  595  35 0.910256410 0.478070175
## 810  0.174 0.826  one Group1 355  545  595  35 0.910256410 0.478070175
## 1165 0.174 0.826 zero Group1 355  545  595  35 0.910256410 0.478070175
## 209  0.172 0.828 zero Group1 355  540  600  35 0.910256410 0.473684211
## 979  0.172 0.828 zero Group1 355  540  600  35 0.910256410 0.473684211
## 1190 0.172 0.828 zero Group1 355  540  600  35 0.910256410 0.473684211
## 1252 0.172 0.828 zero Group1 355  540  600  35 0.910256410 0.473684211
## 1441 0.172 0.828 zero Group1 355  540  600  35 0.910256410 0.473684211
## 286  0.170 0.830 zero Group1 355  535  605  35 0.910256410 0.469298246
## 302  0.170 0.830 zero Group1 355  535  605  35 0.910256410 0.469298246
## 493  0.170 0.830 zero Group1 355  535  605  35 0.910256410 0.469298246
## 671  0.170 0.830 zero Group1 355  535  605  35 0.910256410 0.469298246
## 792  0.170 0.830 zero Group1 355  535  605  35 0.910256410 0.469298246
## 528  0.168 0.832 zero Group1 356  530  610  34 0.912820513 0.464912281
## 833  0.168 0.832 zero Group1 356  530  610  34 0.912820513 0.464912281
## 941  0.168 0.832 zero Group1 356  530  610  34 0.912820513 0.464912281
## 1072 0.168 0.832  one Group1 356  530  610  34 0.912820513 0.464912281
## 1405 0.168 0.832 zero Group1 356  530  610  34 0.912820513 0.464912281
## 1417 0.168 0.832 zero Group1 356  530  610  34 0.912820513 0.464912281
## 32   0.166 0.834 zero Group1 356  523  617  34 0.912820513 0.458771930
## 58   0.166 0.834 zero Group1 356  523  617  34 0.912820513 0.458771930
## 226  0.166 0.834 zero Group1 356  523  617  34 0.912820513 0.458771930
## 458  0.166 0.834 zero Group1 356  523  617  34 0.912820513 0.458771930
## 746  0.166 0.834 zero Group1 356  523  617  34 0.912820513 0.458771930
## 1266 0.166 0.834 zero Group1 356  523  617  34 0.912820513 0.458771930
## 1414 0.166 0.834 zero Group1 356  523  617  34 0.912820513 0.458771930
## 54   0.164 0.836 zero Group1 358  517  623  32 0.917948718 0.453508772
## 560  0.164 0.836  one Group1 358  517  623  32 0.917948718 0.453508772
## 561  0.164 0.836  one Group1 358  517  623  32 0.917948718 0.453508772
## 573  0.164 0.836 zero Group1 358  517  623  32 0.917948718 0.453508772
## 753  0.164 0.836 zero Group1 358  517  623  32 0.917948718 0.453508772
## 789  0.164 0.836 zero Group1 358  517  623  32 0.917948718 0.453508772
## 845  0.164 0.836 zero Group1 358  517  623  32 0.917948718 0.453508772
## 1025 0.164 0.836 zero Group1 358  517  623  32 0.917948718 0.453508772
## 356  0.162 0.838 zero Group1 359  515  625  31 0.920512821 0.451754386
## 1178 0.162 0.838 zero Group1 359  515  625  31 0.920512821 0.451754386
## 1358 0.162 0.838  one Group1 359  515  625  31 0.920512821 0.451754386
## 351  0.160 0.840 zero Group1 359  510  630  31 0.920512821 0.447368421
## 507  0.160 0.840 zero Group1 359  510  630  31 0.920512821 0.447368421
## 726  0.160 0.840 zero Group1 359  510  630  31 0.920512821 0.447368421
## 838  0.160 0.840 zero Group1 359  510  630  31 0.920512821 0.447368421
## 1255 0.160 0.840 zero Group1 359  510  630  31 0.920512821 0.447368421
## 1    0.158 0.842 zero Group1 359  501  639  31 0.920512821 0.439473684
## 108  0.158 0.842 zero Group1 359  501  639  31 0.920512821 0.439473684
## 816  0.158 0.842 zero Group1 359  501  639  31 0.920512821 0.439473684
## 924  0.158 0.842 zero Group1 359  501  639  31 0.920512821 0.439473684
## 986  0.158 0.842 zero Group1 359  501  639  31 0.920512821 0.439473684
## 1091 0.158 0.842 zero Group1 359  501  639  31 0.920512821 0.439473684
## 1161 0.158 0.842 zero Group1 359  501  639  31 0.920512821 0.439473684
## 1306 0.158 0.842 zero Group1 359  501  639  31 0.920512821 0.439473684
## 1489 0.158 0.842 zero Group1 359  501  639  31 0.920512821 0.439473684
## 57   0.156 0.844 zero Group1 359  494  646  31 0.920512821 0.433333333
## 125  0.156 0.844 zero Group1 359  494  646  31 0.920512821 0.433333333
## 368  0.156 0.844 zero Group1 359  494  646  31 0.920512821 0.433333333
## 1081 0.156 0.844 zero Group1 359  494  646  31 0.920512821 0.433333333
## 1155 0.156 0.844 zero Group1 359  494  646  31 0.920512821 0.433333333
## 1372 0.156 0.844 zero Group1 359  494  646  31 0.920512821 0.433333333
## 1506 0.156 0.844 zero Group1 359  494  646  31 0.920512821 0.433333333
## 371  0.154 0.846 zero Group1 359  490  650  31 0.920512821 0.429824561
## 700  0.154 0.846 zero Group1 359  490  650  31 0.920512821 0.429824561
## 1134 0.154 0.846 zero Group1 359  490  650  31 0.920512821 0.429824561
## 1188 0.154 0.846 zero Group1 359  490  650  31 0.920512821 0.429824561
## 83   0.152 0.848 zero Group1 359  485  655  31 0.920512821 0.425438596
## 648  0.152 0.848 zero Group1 359  485  655  31 0.920512821 0.425438596
## 822  0.152 0.848 zero Group1 359  485  655  31 0.920512821 0.425438596
## 940  0.152 0.848 zero Group1 359  485  655  31 0.920512821 0.425438596
## 1416 0.152 0.848 zero Group1 359  485  655  31 0.920512821 0.425438596
## 36   0.150 0.850 zero Group1 361  480  660  29 0.925641026 0.421052632
## 558  0.150 0.850  one Group1 361  480  660  29 0.925641026 0.421052632
## 599  0.150 0.850 zero Group1 361  480  660  29 0.925641026 0.421052632
## 984  0.150 0.850 zero Group1 361  480  660  29 0.925641026 0.421052632
## 1005 0.150 0.850 zero Group1 361  480  660  29 0.925641026 0.421052632
## 1218 0.150 0.850  one Group1 361  480  660  29 0.925641026 0.421052632
## 1497 0.150 0.850 zero Group1 361  480  660  29 0.925641026 0.421052632
## 288  0.148 0.852 zero Group1 363  477  663  27 0.930769231 0.418421053
## 347  0.148 0.852  one Group1 363  477  663  27 0.930769231 0.418421053
## 412  0.148 0.852  one Group1 363  477  663  27 0.930769231 0.418421053
## 1148 0.148 0.852 zero Group1 363  477  663  27 0.930769231 0.418421053
## 1495 0.148 0.852 zero Group1 363  477  663  27 0.930769231 0.418421053
## 1240 0.146 0.854 zero Group1 364  476  664  26 0.933333333 0.417543860
## 1469 0.146 0.854  one Group1 364  476  664  26 0.933333333 0.417543860
## 244  0.144 0.856 zero Group1 365  468  672  25 0.935897436 0.410526316
## 693  0.144 0.856 zero Group1 365  468  672  25 0.935897436 0.410526316
## 796  0.144 0.856 zero Group1 365  468  672  25 0.935897436 0.410526316
## 918  0.144 0.856 zero Group1 365  468  672  25 0.935897436 0.410526316
## 1281 0.144 0.856 zero Group1 365  468  672  25 0.935897436 0.410526316
## 1285 0.144 0.856  one Group1 365  468  672  25 0.935897436 0.410526316
## 1379 0.144 0.856 zero Group1 365  468  672  25 0.935897436 0.410526316
## 1432 0.144 0.856 zero Group1 365  468  672  25 0.935897436 0.410526316
## 1523 0.144 0.856 zero Group1 365  468  672  25 0.935897436 0.410526316
## 128  0.142 0.858 zero Group1 365  464  676  25 0.935897436 0.407017544
## 203  0.142 0.858 zero Group1 365  464  676  25 0.935897436 0.407017544
## 462  0.142 0.858 zero Group1 365  464  676  25 0.935897436 0.407017544
## 1307 0.142 0.858 zero Group1 365  464  676  25 0.935897436 0.407017544
## 6    0.140 0.860 zero Group1 365  459  681  25 0.935897436 0.402631579
## 180  0.140 0.860 zero Group1 365  459  681  25 0.935897436 0.402631579
## 216  0.140 0.860 zero Group1 365  459  681  25 0.935897436 0.402631579
## 360  0.140 0.860 zero Group1 365  459  681  25 0.935897436 0.402631579
## 1234 0.140 0.860 zero Group1 365  459  681  25 0.935897436 0.402631579
## 559  0.138 0.862  one Group1 369  457  683  21 0.946153846 0.400877193
## 723  0.138 0.862 zero Group1 369  457  683  21 0.946153846 0.400877193
## 967  0.138 0.862  one Group1 369  457  683  21 0.946153846 0.400877193
## 1247 0.138 0.862  one Group1 369  457  683  21 0.946153846 0.400877193
## 1322 0.138 0.862  one Group1 369  457  683  21 0.946153846 0.400877193
## 1508 0.138 0.862 zero Group1 369  457  683  21 0.946153846 0.400877193
## 195  0.136 0.864 zero Group1 369  450  690  21 0.946153846 0.394736842
## 369  0.136 0.864 zero Group1 369  450  690  21 0.946153846 0.394736842
## 837  0.136 0.864 zero Group1 369  450  690  21 0.946153846 0.394736842
## 1011 0.136 0.864 zero Group1 369  450  690  21 0.946153846 0.394736842
## 1152 0.136 0.864 zero Group1 369  450  690  21 0.946153846 0.394736842
## 1423 0.136 0.864 zero Group1 369  450  690  21 0.946153846 0.394736842
## 1521 0.136 0.864 zero Group1 369  450  690  21 0.946153846 0.394736842
## 362  0.134 0.866 zero Group1 369  445  695  21 0.946153846 0.390350877
## 871  0.134 0.866 zero Group1 369  445  695  21 0.946153846 0.390350877
## 920  0.134 0.866 zero Group1 369  445  695  21 0.946153846 0.390350877
## 1014 0.134 0.866 zero Group1 369  445  695  21 0.946153846 0.390350877
## 1370 0.134 0.866 zero Group1 369  445  695  21 0.946153846 0.390350877
## 215  0.132 0.868 zero Group1 369  438  702  21 0.946153846 0.384210526
## 236  0.132 0.868 zero Group1 369  438  702  21 0.946153846 0.384210526
## 294  0.132 0.868 zero Group1 369  438  702  21 0.946153846 0.384210526
## 366  0.132 0.868 zero Group1 369  438  702  21 0.946153846 0.384210526
## 570  0.132 0.868 zero Group1 369  438  702  21 0.946153846 0.384210526
## 945  0.132 0.868 zero Group1 369  438  702  21 0.946153846 0.384210526
## 1253 0.132 0.868 zero Group1 369  438  702  21 0.946153846 0.384210526
## 33   0.130 0.870 zero Group1 370  435  705  20 0.948717949 0.381578947
## 476  0.130 0.870 zero Group1 370  435  705  20 0.948717949 0.381578947
## 523  0.130 0.870 zero Group1 370  435  705  20 0.948717949 0.381578947
## 588  0.130 0.870  one Group1 370  435  705  20 0.948717949 0.381578947
## 117  0.128 0.872 zero Group1 370  431  709  20 0.948717949 0.378070175
## 301  0.128 0.872 zero Group1 370  431  709  20 0.948717949 0.378070175
## 598  0.128 0.872 zero Group1 370  431  709  20 0.948717949 0.378070175
## 1328 0.128 0.872 zero Group1 370  431  709  20 0.948717949 0.378070175
## 88   0.126 0.874 zero Group1 372  426  714  18 0.953846154 0.373684211
## 421  0.126 0.874 zero Group1 372  426  714  18 0.953846154 0.373684211
## 861  0.126 0.874 zero Group1 372  426  714  18 0.953846154 0.373684211
## 1017 0.126 0.874 zero Group1 372  426  714  18 0.953846154 0.373684211
## 1023 0.126 0.874 zero Group1 372  426  714  18 0.953846154 0.373684211
## 1312 0.126 0.874  one Group1 372  426  714  18 0.953846154 0.373684211
## 1361 0.126 0.874  one Group1 372  426  714  18 0.953846154 0.373684211
## 111  0.124 0.876 zero Group1 372  417  723  18 0.953846154 0.365789474
## 399  0.124 0.876 zero Group1 372  417  723  18 0.953846154 0.365789474
## 518  0.124 0.876 zero Group1 372  417  723  18 0.953846154 0.365789474
## 688  0.124 0.876 zero Group1 372  417  723  18 0.953846154 0.365789474
## 743  0.124 0.876 zero Group1 372  417  723  18 0.953846154 0.365789474
## 1015 0.124 0.876 zero Group1 372  417  723  18 0.953846154 0.365789474
## 1196 0.124 0.876 zero Group1 372  417  723  18 0.953846154 0.365789474
## 1228 0.124 0.876 zero Group1 372  417  723  18 0.953846154 0.365789474
## 1406 0.124 0.876 zero Group1 372  417  723  18 0.953846154 0.365789474
## 82   0.122 0.878 zero Group1 372  410  730  18 0.953846154 0.359649123
## 473  0.122 0.878 zero Group1 372  410  730  18 0.953846154 0.359649123
## 614  0.122 0.878 zero Group1 372  410  730  18 0.953846154 0.359649123
## 921  0.122 0.878 zero Group1 372  410  730  18 0.953846154 0.359649123
## 1038 0.122 0.878 zero Group1 372  410  730  18 0.953846154 0.359649123
## 1075 0.122 0.878 zero Group1 372  410  730  18 0.953846154 0.359649123
## 1327 0.122 0.878 zero Group1 372  410  730  18 0.953846154 0.359649123
## 694  0.120 0.880 zero Group1 372  409  731  18 0.953846154 0.358771930
## 539  0.118 0.882 zero Group1 372  405  735  18 0.953846154 0.355263158
## 842  0.118 0.882 zero Group1 372  405  735  18 0.953846154 0.355263158
## 854  0.118 0.882 zero Group1 372  405  735  18 0.953846154 0.355263158
## 1194 0.118 0.882 zero Group1 372  405  735  18 0.953846154 0.355263158
## 403  0.116 0.884 zero Group1 372  403  737  18 0.953846154 0.353508772
## 1257 0.116 0.884 zero Group1 372  403  737  18 0.953846154 0.353508772
## 8    0.114 0.886 zero Group1 372  396  744  18 0.953846154 0.347368421
## 361  0.114 0.886 zero Group1 372  396  744  18 0.953846154 0.347368421
## 363  0.114 0.886 zero Group1 372  396  744  18 0.953846154 0.347368421
## 380  0.114 0.886 zero Group1 372  396  744  18 0.953846154 0.347368421
## 596  0.114 0.886 zero Group1 372  396  744  18 0.953846154 0.347368421
## 927  0.114 0.886 zero Group1 372  396  744  18 0.953846154 0.347368421
## 1341 0.114 0.886 zero Group1 372  396  744  18 0.953846154 0.347368421
## 121  0.112 0.888 zero Group1 372  385  755  18 0.953846154 0.337719298
## 157  0.112 0.888 zero Group1 372  385  755  18 0.953846154 0.337719298
## 298  0.112 0.888 zero Group1 372  385  755  18 0.953846154 0.337719298
## 621  0.112 0.888 zero Group1 372  385  755  18 0.953846154 0.337719298
## 651  0.112 0.888 zero Group1 372  385  755  18 0.953846154 0.337719298
## 944  0.112 0.888 zero Group1 372  385  755  18 0.953846154 0.337719298
## 960  0.112 0.888 zero Group1 372  385  755  18 0.953846154 0.337719298
## 1110 0.112 0.888 zero Group1 372  385  755  18 0.953846154 0.337719298
## 1279 0.112 0.888 zero Group1 372  385  755  18 0.953846154 0.337719298
## 1309 0.112 0.888 zero Group1 372  385  755  18 0.953846154 0.337719298
## 1527 0.112 0.888 zero Group1 372  385  755  18 0.953846154 0.337719298
## 116  0.110 0.890 zero Group1 374  378  762  16 0.958974359 0.331578947
## 239  0.110 0.890  one Group1 374  378  762  16 0.958974359 0.331578947
## 395  0.110 0.890  one Group1 374  378  762  16 0.958974359 0.331578947
## 510  0.110 0.890 zero Group1 374  378  762  16 0.958974359 0.331578947
## 1018 0.110 0.890 zero Group1 374  378  762  16 0.958974359 0.331578947
## 1205 0.110 0.890 zero Group1 374  378  762  16 0.958974359 0.331578947
## 1427 0.110 0.890 zero Group1 374  378  762  16 0.958974359 0.331578947
## 1504 0.110 0.890 zero Group1 374  378  762  16 0.958974359 0.331578947
## 1514 0.110 0.890 zero Group1 374  378  762  16 0.958974359 0.331578947
## 206  0.108 0.892 zero Group1 374  374  766  16 0.958974359 0.328070175
## 259  0.108 0.892 zero Group1 374  374  766  16 0.958974359 0.328070175
## 426  0.108 0.892 zero Group1 374  374  766  16 0.958974359 0.328070175
## 527  0.108 0.892 zero Group1 374  374  766  16 0.958974359 0.328070175
## 62   0.106 0.894 zero Group1 374  369  771  16 0.958974359 0.323684211
## 454  0.106 0.894 zero Group1 374  369  771  16 0.958974359 0.323684211
## 892  0.106 0.894 zero Group1 374  369  771  16 0.958974359 0.323684211
## 1280 0.106 0.894 zero Group1 374  369  771  16 0.958974359 0.323684211
## 1376 0.106 0.894 zero Group1 374  369  771  16 0.958974359 0.323684211
## 287  0.104 0.896 zero Group1 376  363  777  14 0.964102564 0.318421053
## 809  0.104 0.896 zero Group1 376  363  777  14 0.964102564 0.318421053
## 875  0.104 0.896  one Group1 376  363  777  14 0.964102564 0.318421053
## 995  0.104 0.896 zero Group1 376  363  777  14 0.964102564 0.318421053
## 1096 0.104 0.896 zero Group1 376  363  777  14 0.964102564 0.318421053
## 1186 0.104 0.896 zero Group1 376  363  777  14 0.964102564 0.318421053
## 1391 0.104 0.896  one Group1 376  363  777  14 0.964102564 0.318421053
## 1479 0.104 0.896 zero Group1 376  363  777  14 0.964102564 0.318421053
## 291  0.102 0.898 zero Group1 378  360  780  12 0.969230769 0.315789474
## 813  0.102 0.898  one Group1 378  360  780  12 0.969230769 0.315789474
## 1001 0.102 0.898 zero Group1 378  360  780  12 0.969230769 0.315789474
## 1116 0.102 0.898  one Group1 378  360  780  12 0.969230769 0.315789474
## 1500 0.102 0.898 zero Group1 378  360  780  12 0.969230769 0.315789474
## 618  0.100 0.900 zero Group1 378  357  783  12 0.969230769 0.313157895
## 768  0.100 0.900 zero Group1 378  357  783  12 0.969230769 0.313157895
## 1221 0.100 0.900 zero Group1 378  357  783  12 0.969230769 0.313157895
## 141  0.098 0.902  one Group1 380  354  786  10 0.974358974 0.310526316
## 166  0.098 0.902  one Group1 380  354  786  10 0.974358974 0.310526316
## 404  0.098 0.902 zero Group1 380  354  786  10 0.974358974 0.310526316
## 1263 0.098 0.902 zero Group1 380  354  786  10 0.974358974 0.310526316
## 1352 0.098 0.902 zero Group1 380  354  786  10 0.974358974 0.310526316
## 1082 0.096 0.904 zero Group1 380  352  788  10 0.974358974 0.308771930
## 1484 0.096 0.904 zero Group1 380  352  788  10 0.974358974 0.308771930
## 16   0.094 0.906 zero Group1 380  347  793  10 0.974358974 0.304385965
## 299  0.094 0.906 zero Group1 380  347  793  10 0.974358974 0.304385965
## 530  0.094 0.906 zero Group1 380  347  793  10 0.974358974 0.304385965
## 608  0.094 0.906 zero Group1 380  347  793  10 0.974358974 0.304385965
## 1529 0.094 0.906 zero Group1 380  347  793  10 0.974358974 0.304385965
## 961  0.092 0.908 zero Group1 380  346  794  10 0.974358974 0.303508772
## 472  0.090 0.910 zero Group1 381  342  798   9 0.976923077 0.300000000
## 477  0.090 0.910 zero Group1 381  342  798   9 0.976923077 0.300000000
## 622  0.090 0.910 zero Group1 381  342  798   9 0.976923077 0.300000000
## 628  0.090 0.910  one Group1 381  342  798   9 0.976923077 0.300000000
## 1207 0.090 0.910 zero Group1 381  342  798   9 0.976923077 0.300000000
## 92   0.088 0.912 zero Group1 381  337  803   9 0.976923077 0.295614035
## 336  0.088 0.912 zero Group1 381  337  803   9 0.976923077 0.295614035
## 946  0.088 0.912 zero Group1 381  337  803   9 0.976923077 0.295614035
## 1488 0.088 0.912 zero Group1 381  337  803   9 0.976923077 0.295614035
## 1510 0.088 0.912 zero Group1 381  337  803   9 0.976923077 0.295614035
## 326  0.086 0.914 zero Group1 381  331  809   9 0.976923077 0.290350877
## 407  0.086 0.914 zero Group1 381  331  809   9 0.976923077 0.290350877
## 1076 0.086 0.914 zero Group1 381  331  809   9 0.976923077 0.290350877
## 1239 0.086 0.914 zero Group1 381  331  809   9 0.976923077 0.290350877
## 1428 0.086 0.914 zero Group1 381  331  809   9 0.976923077 0.290350877
## 1452 0.086 0.914 zero Group1 381  331  809   9 0.976923077 0.290350877
## 532  0.084 0.916 zero Group1 381  328  812   9 0.976923077 0.287719298
## 818  0.084 0.916 zero Group1 381  328  812   9 0.976923077 0.287719298
## 1505 0.084 0.916 zero Group1 381  328  812   9 0.976923077 0.287719298
## 724  0.082 0.918 zero Group1 383  324  816   7 0.982051282 0.284210526
## 754  0.082 0.918 zero Group1 383  324  816   7 0.982051282 0.284210526
## 887  0.082 0.918 zero Group1 383  324  816   7 0.982051282 0.284210526
## 1059 0.082 0.918 zero Group1 383  324  816   7 0.982051282 0.284210526
## 1113 0.082 0.918  one Group1 383  324  816   7 0.982051282 0.284210526
## 1315 0.082 0.918  one Group1 383  324  816   7 0.982051282 0.284210526
## 26   0.080 0.920 zero Group1 383  319  821   7 0.982051282 0.279824561
## 154  0.080 0.920 zero Group1 383  319  821   7 0.982051282 0.279824561
## 425  0.080 0.920 zero Group1 383  319  821   7 0.982051282 0.279824561
## 440  0.080 0.920 zero Group1 383  319  821   7 0.982051282 0.279824561
## 606  0.080 0.920 zero Group1 383  319  821   7 0.982051282 0.279824561
## 161  0.078 0.922 zero Group1 383  309  831   7 0.982051282 0.271052632
## 165  0.078 0.922 zero Group1 383  309  831   7 0.982051282 0.271052632
## 207  0.078 0.922 zero Group1 383  309  831   7 0.982051282 0.271052632
## 501  0.078 0.922 zero Group1 383  309  831   7 0.982051282 0.271052632
## 821  0.078 0.922 zero Group1 383  309  831   7 0.982051282 0.271052632
## 1026 0.078 0.922 zero Group1 383  309  831   7 0.982051282 0.271052632
## 1053 0.078 0.922 zero Group1 383  309  831   7 0.982051282 0.271052632
## 1061 0.078 0.922 zero Group1 383  309  831   7 0.982051282 0.271052632
## 1089 0.078 0.922 zero Group1 383  309  831   7 0.982051282 0.271052632
## 1136 0.078 0.922 zero Group1 383  309  831   7 0.982051282 0.271052632
## 186  0.076 0.924 zero Group1 383  302  838   7 0.982051282 0.264912281
## 402  0.076 0.924 zero Group1 383  302  838   7 0.982051282 0.264912281
## 406  0.076 0.924 zero Group1 383  302  838   7 0.982051282 0.264912281
## 434  0.076 0.924 zero Group1 383  302  838   7 0.982051282 0.264912281
## 484  0.076 0.924 zero Group1 383  302  838   7 0.982051282 0.264912281
## 616  0.076 0.924 zero Group1 383  302  838   7 0.982051282 0.264912281
## 1141 0.076 0.924 zero Group1 383  302  838   7 0.982051282 0.264912281
## 104  0.074 0.926 zero Group1 383  292  848   7 0.982051282 0.256140351
## 155  0.074 0.926 zero Group1 383  292  848   7 0.982051282 0.256140351
## 187  0.074 0.926 zero Group1 383  292  848   7 0.982051282 0.256140351
## 721  0.074 0.926 zero Group1 383  292  848   7 0.982051282 0.256140351
## 852  0.074 0.926 zero Group1 383  292  848   7 0.982051282 0.256140351
## 1010 0.074 0.926 zero Group1 383  292  848   7 0.982051282 0.256140351
## 1039 0.074 0.926 zero Group1 383  292  848   7 0.982051282 0.256140351
## 1310 0.074 0.926 zero Group1 383  292  848   7 0.982051282 0.256140351
## 1351 0.074 0.926 zero Group1 383  292  848   7 0.982051282 0.256140351
## 1411 0.074 0.926 zero Group1 383  292  848   7 0.982051282 0.256140351
## 75   0.072 0.928 zero Group1 384  284  856   6 0.984615385 0.249122807
## 684  0.072 0.928 zero Group1 384  284  856   6 0.984615385 0.249122807
## 699  0.072 0.928 zero Group1 384  284  856   6 0.984615385 0.249122807
## 862  0.072 0.928 zero Group1 384  284  856   6 0.984615385 0.249122807
## 883  0.072 0.928  one Group1 384  284  856   6 0.984615385 0.249122807
## 1151 0.072 0.928 zero Group1 384  284  856   6 0.984615385 0.249122807
## 1184 0.072 0.928 zero Group1 384  284  856   6 0.984615385 0.249122807
## 1276 0.072 0.928 zero Group1 384  284  856   6 0.984615385 0.249122807
## 1476 0.072 0.928 zero Group1 384  284  856   6 0.984615385 0.249122807
## 430  0.070 0.930 zero Group1 386  281  859   4 0.989743590 0.246491228
## 586  0.070 0.930  one Group1 386  281  859   4 0.989743590 0.246491228
## 905  0.070 0.930  one Group1 386  281  859   4 0.989743590 0.246491228
## 934  0.070 0.930 zero Group1 386  281  859   4 0.989743590 0.246491228
## 1150 0.070 0.930 zero Group1 386  281  859   4 0.989743590 0.246491228
## 134  0.068 0.932 zero Group1 386  274  866   4 0.989743590 0.240350877
## 300  0.068 0.932 zero Group1 386  274  866   4 0.989743590 0.240350877
## 401  0.068 0.932 zero Group1 386  274  866   4 0.989743590 0.240350877
## 869  0.068 0.932 zero Group1 386  274  866   4 0.989743590 0.240350877
## 872  0.068 0.932 zero Group1 386  274  866   4 0.989743590 0.240350877
## 1109 0.068 0.932 zero Group1 386  274  866   4 0.989743590 0.240350877
## 1378 0.068 0.932 zero Group1 386  274  866   4 0.989743590 0.240350877
## 118  0.066 0.934 zero Group1 387  262  878   3 0.992307692 0.229824561
## 188  0.066 0.934 zero Group1 387  262  878   3 0.992307692 0.229824561
## 234  0.066 0.934 zero Group1 387  262  878   3 0.992307692 0.229824561
## 441  0.066 0.934 zero Group1 387  262  878   3 0.992307692 0.229824561
## 611  0.066 0.934 zero Group1 387  262  878   3 0.992307692 0.229824561
## 719  0.066 0.934 zero Group1 387  262  878   3 0.992307692 0.229824561
## 761  0.066 0.934 zero Group1 387  262  878   3 0.992307692 0.229824561
## 1209 0.066 0.934 zero Group1 387  262  878   3 0.992307692 0.229824561
## 1249 0.066 0.934  one Group1 387  262  878   3 0.992307692 0.229824561
## 1273 0.066 0.934 zero Group1 387  262  878   3 0.992307692 0.229824561
## 1339 0.066 0.934 zero Group1 387  262  878   3 0.992307692 0.229824561
## 1491 0.066 0.934 zero Group1 387  262  878   3 0.992307692 0.229824561
## 1524 0.066 0.934 zero Group1 387  262  878   3 0.992307692 0.229824561
## 93   0.064 0.936 zero Group1 387  253  887   3 0.992307692 0.221929825
## 120  0.064 0.936 zero Group1 387  253  887   3 0.992307692 0.221929825
## 122  0.064 0.936 zero Group1 387  253  887   3 0.992307692 0.221929825
## 160  0.064 0.936 zero Group1 387  253  887   3 0.992307692 0.221929825
## 218  0.064 0.936 zero Group1 387  253  887   3 0.992307692 0.221929825
## 264  0.064 0.936 zero Group1 387  253  887   3 0.992307692 0.221929825
## 483  0.064 0.936 zero Group1 387  253  887   3 0.992307692 0.221929825
## 670  0.064 0.936 zero Group1 387  253  887   3 0.992307692 0.221929825
## 1090 0.064 0.936 zero Group1 387  253  887   3 0.992307692 0.221929825
## 132  0.062 0.938 zero Group1 387  245  895   3 0.992307692 0.214912281
## 365  0.062 0.938 zero Group1 387  245  895   3 0.992307692 0.214912281
## 466  0.062 0.938 zero Group1 387  245  895   3 0.992307692 0.214912281
## 645  0.062 0.938 zero Group1 387  245  895   3 0.992307692 0.214912281
## 673  0.062 0.938 zero Group1 387  245  895   3 0.992307692 0.214912281
## 1201 0.062 0.938 zero Group1 387  245  895   3 0.992307692 0.214912281
## 1300 0.062 0.938 zero Group1 387  245  895   3 0.992307692 0.214912281
## 1516 0.062 0.938 zero Group1 387  245  895   3 0.992307692 0.214912281
## 183  0.060 0.940 zero Group1 387  240  900   3 0.992307692 0.210526316
## 429  0.060 0.940 zero Group1 387  240  900   3 0.992307692 0.210526316
## 463  0.060 0.940 zero Group1 387  240  900   3 0.992307692 0.210526316
## 1272 0.060 0.940 zero Group1 387  240  900   3 0.992307692 0.210526316
## 1346 0.060 0.940 zero Group1 387  240  900   3 0.992307692 0.210526316
## 42   0.058 0.942 zero Group1 388  231  909   2 0.994871795 0.202631579
## 133  0.058 0.942 zero Group1 388  231  909   2 0.994871795 0.202631579
## 289  0.058 0.942 zero Group1 388  231  909   2 0.994871795 0.202631579
## 480  0.058 0.942 zero Group1 388  231  909   2 0.994871795 0.202631579
## 683  0.058 0.942 zero Group1 388  231  909   2 0.994871795 0.202631579
## 770  0.058 0.942 zero Group1 388  231  909   2 0.994871795 0.202631579
## 912  0.058 0.942 zero Group1 388  231  909   2 0.994871795 0.202631579
## 1062 0.058 0.942 zero Group1 388  231  909   2 0.994871795 0.202631579
## 1278 0.058 0.942 zero Group1 388  231  909   2 0.994871795 0.202631579
## 1313 0.058 0.942  one Group1 388  231  909   2 0.994871795 0.202631579
## 350  0.056 0.944 zero Group1 388  226  914   2 0.994871795 0.198245614
## 576  0.056 0.944 zero Group1 388  226  914   2 0.994871795 0.198245614
## 787  0.056 0.944 zero Group1 388  226  914   2 0.994871795 0.198245614
## 1449 0.056 0.944 zero Group1 388  226  914   2 0.994871795 0.198245614
## 1480 0.056 0.944 zero Group1 388  226  914   2 0.994871795 0.198245614
## 219  0.054 0.946 zero Group1 388  223  917   2 0.994871795 0.195614035
## 751  0.054 0.946 zero Group1 388  223  917   2 0.994871795 0.195614035
## 911  0.054 0.946 zero Group1 388  223  917   2 0.994871795 0.195614035
## 3    0.052 0.948 zero Group1 388  215  925   2 0.994871795 0.188596491
## 24   0.052 0.948 zero Group1 388  215  925   2 0.994871795 0.188596491
## 119  0.052 0.948 zero Group1 388  215  925   2 0.994871795 0.188596491
## 460  0.052 0.948 zero Group1 388  215  925   2 0.994871795 0.188596491
## 701  0.052 0.948 zero Group1 388  215  925   2 0.994871795 0.188596491
## 1331 0.052 0.948 zero Group1 388  215  925   2 0.994871795 0.188596491
## 1498 0.052 0.948 zero Group1 388  215  925   2 0.994871795 0.188596491
## 1515 0.052 0.948 zero Group1 388  215  925   2 0.994871795 0.188596491
## 67   0.050 0.950 zero Group1 389  206  934   1 0.997435897 0.180701754
## 91   0.050 0.950 zero Group1 389  206  934   1 0.997435897 0.180701754
## 131  0.050 0.950 zero Group1 389  206  934   1 0.997435897 0.180701754
## 153  0.050 0.950 zero Group1 389  206  934   1 0.997435897 0.180701754
## 163  0.050 0.950 zero Group1 389  206  934   1 0.997435897 0.180701754
## 217  0.050 0.950 zero Group1 389  206  934   1 0.997435897 0.180701754
## 304  0.050 0.950 zero Group1 389  206  934   1 0.997435897 0.180701754
## 756  0.050 0.950 zero Group1 389  206  934   1 0.997435897 0.180701754
## 797  0.050 0.950  one Group1 389  206  934   1 0.997435897 0.180701754
## 1124 0.050 0.950 zero Group1 389  206  934   1 0.997435897 0.180701754
## 324  0.048 0.952 zero Group1 389  196  944   1 0.997435897 0.171929825
## 649  0.048 0.952 zero Group1 389  196  944   1 0.997435897 0.171929825
## 652  0.048 0.952 zero Group1 389  196  944   1 0.997435897 0.171929825
## 859  0.048 0.952 zero Group1 389  196  944   1 0.997435897 0.171929825
## 931  0.048 0.952 zero Group1 389  196  944   1 0.997435897 0.171929825
## 994  0.048 0.952 zero Group1 389  196  944   1 0.997435897 0.171929825
## 1195 0.048 0.952 zero Group1 389  196  944   1 0.997435897 0.171929825
## 1238 0.048 0.952 zero Group1 389  196  944   1 0.997435897 0.171929825
## 1302 0.048 0.952 zero Group1 389  196  944   1 0.997435897 0.171929825
## 1332 0.048 0.952 zero Group1 389  196  944   1 0.997435897 0.171929825
## 14   0.046 0.954 zero Group1 389  185  955   1 0.997435897 0.162280702
## 212  0.046 0.954 zero Group1 389  185  955   1 0.997435897 0.162280702
## 383  0.046 0.954 zero Group1 389  185  955   1 0.997435897 0.162280702
## 479  0.046 0.954 zero Group1 389  185  955   1 0.997435897 0.162280702
## 750  0.046 0.954 zero Group1 389  185  955   1 0.997435897 0.162280702
## 865  0.046 0.954 zero Group1 389  185  955   1 0.997435897 0.162280702
## 1225 0.046 0.954 zero Group1 389  185  955   1 0.997435897 0.162280702
## 1420 0.046 0.954 zero Group1 389  185  955   1 0.997435897 0.162280702
## 1433 0.046 0.954 zero Group1 389  185  955   1 0.997435897 0.162280702
## 1509 0.046 0.954 zero Group1 389  185  955   1 0.997435897 0.162280702
## 1526 0.046 0.954 zero Group1 389  185  955   1 0.997435897 0.162280702
## 749  0.044 0.956 zero Group1 389  180  960   1 0.997435897 0.157894737
## 820  0.044 0.956 zero Group1 389  180  960   1 0.997435897 0.157894737
## 1342 0.044 0.956 zero Group1 389  180  960   1 0.997435897 0.157894737
## 1412 0.044 0.956 zero Group1 389  180  960   1 0.997435897 0.157894737
## 1517 0.044 0.956 zero Group1 389  180  960   1 0.997435897 0.157894737
## 5    0.042 0.958 zero Group1 389  170  970   1 0.997435897 0.149122807
## 65   0.042 0.958 zero Group1 389  170  970   1 0.997435897 0.149122807
## 385  0.042 0.958 zero Group1 389  170  970   1 0.997435897 0.149122807
## 396  0.042 0.958 zero Group1 389  170  970   1 0.997435897 0.149122807
## 482  0.042 0.958 zero Group1 389  170  970   1 0.997435897 0.149122807
## 625  0.042 0.958 zero Group1 389  170  970   1 0.997435897 0.149122807
## 987  0.042 0.958 zero Group1 389  170  970   1 0.997435897 0.149122807
## 1080 0.042 0.958 zero Group1 389  170  970   1 0.997435897 0.149122807
## 1200 0.042 0.958 zero Group1 389  170  970   1 0.997435897 0.149122807
## 1333 0.042 0.958 zero Group1 389  170  970   1 0.997435897 0.149122807
## 90   0.040 0.960 zero Group1 389  164  976   1 0.997435897 0.143859649
## 176  0.040 0.960 zero Group1 389  164  976   1 0.997435897 0.143859649
## 439  0.040 0.960 zero Group1 389  164  976   1 0.997435897 0.143859649
## 615  0.040 0.960 zero Group1 389  164  976   1 0.997435897 0.143859649
## 917  0.040 0.960 zero Group1 389  164  976   1 0.997435897 0.143859649
## 1445 0.040 0.960 zero Group1 389  164  976   1 0.997435897 0.143859649
## 86   0.038 0.962 zero Group1 390  155  985   0 1.000000000 0.135964912
## 337  0.038 0.962 zero Group1 390  155  985   0 1.000000000 0.135964912
## 367  0.038 0.962 zero Group1 390  155  985   0 1.000000000 0.135964912
## 468  0.038 0.962 zero Group1 390  155  985   0 1.000000000 0.135964912
## 529  0.038 0.962 zero Group1 390  155  985   0 1.000000000 0.135964912
## 610  0.038 0.962 zero Group1 390  155  985   0 1.000000000 0.135964912
## 766  0.038 0.962 zero Group1 390  155  985   0 1.000000000 0.135964912
## 893  0.038 0.962  one Group1 390  155  985   0 1.000000000 0.135964912
## 1008 0.038 0.962 zero Group1 390  155  985   0 1.000000000 0.135964912
## 1367 0.038 0.962 zero Group1 390  155  985   0 1.000000000 0.135964912
## 334  0.036 0.964 zero Group1 390  147  993   0 1.000000000 0.128947368
## 602  0.036 0.964 zero Group1 390  147  993   0 1.000000000 0.128947368
## 767  0.036 0.964 zero Group1 390  147  993   0 1.000000000 0.128947368
## 772  0.036 0.964 zero Group1 390  147  993   0 1.000000000 0.128947368
## 919  0.036 0.964 zero Group1 390  147  993   0 1.000000000 0.128947368
## 935  0.036 0.964 zero Group1 390  147  993   0 1.000000000 0.128947368
## 1078 0.036 0.964 zero Group1 390  147  993   0 1.000000000 0.128947368
## 1375 0.036 0.964 zero Group1 390  147  993   0 1.000000000 0.128947368
## 251  0.034 0.966 zero Group1 390  136 1004   0 1.000000000 0.119298246
## 364  0.034 0.966 zero Group1 390  136 1004   0 1.000000000 0.119298246
## 513  0.034 0.966 zero Group1 390  136 1004   0 1.000000000 0.119298246
## 574  0.034 0.966 zero Group1 390  136 1004   0 1.000000000 0.119298246
## 575  0.034 0.966 zero Group1 390  136 1004   0 1.000000000 0.119298246
## 715  0.034 0.966 zero Group1 390  136 1004   0 1.000000000 0.119298246
## 819  0.034 0.966 zero Group1 390  136 1004   0 1.000000000 0.119298246
## 858  0.034 0.966 zero Group1 390  136 1004   0 1.000000000 0.119298246
## 1133 0.034 0.966 zero Group1 390  136 1004   0 1.000000000 0.119298246
## 1366 0.034 0.966 zero Group1 390  136 1004   0 1.000000000 0.119298246
## 1490 0.034 0.966 zero Group1 390  136 1004   0 1.000000000 0.119298246
## 135  0.032 0.968 zero Group1 390  130 1010   0 1.000000000 0.114035088
## 794  0.032 0.968 zero Group1 390  130 1010   0 1.000000000 0.114035088
## 989  0.032 0.968 zero Group1 390  130 1010   0 1.000000000 0.114035088
## 996  0.032 0.968 zero Group1 390  130 1010   0 1.000000000 0.114035088
## 1334 0.032 0.968 zero Group1 390  130 1010   0 1.000000000 0.114035088
## 1494 0.032 0.968 zero Group1 390  130 1010   0 1.000000000 0.114035088
## 229  0.030 0.970 zero Group1 390  124 1016   0 1.000000000 0.108771930
## 672  0.030 0.970 zero Group1 390  124 1016   0 1.000000000 0.108771930
## 847  0.030 0.970 zero Group1 390  124 1016   0 1.000000000 0.108771930
## 1079 0.030 0.970 zero Group1 390  124 1016   0 1.000000000 0.108771930
## 1429 0.030 0.970 zero Group1 390  124 1016   0 1.000000000 0.108771930
## 1450 0.030 0.970 zero Group1 390  124 1016   0 1.000000000 0.108771930
## 64   0.028 0.972 zero Group1 390  116 1024   0 1.000000000 0.101754386
## 471  0.028 0.972 zero Group1 390  116 1024   0 1.000000000 0.101754386
## 499  0.028 0.972 zero Group1 390  116 1024   0 1.000000000 0.101754386
## 531  0.028 0.972 zero Group1 390  116 1024   0 1.000000000 0.101754386
## 1058 0.028 0.972 zero Group1 390  116 1024   0 1.000000000 0.101754386
## 1185 0.028 0.972 zero Group1 390  116 1024   0 1.000000000 0.101754386
## 1189 0.028 0.972 zero Group1 390  116 1024   0 1.000000000 0.101754386
## 1478 0.028 0.972 zero Group1 390  116 1024   0 1.000000000 0.101754386
## 20   0.026 0.974 zero Group1 390  109 1031   0 1.000000000 0.095614035
## 422  0.026 0.974 zero Group1 390  109 1031   0 1.000000000 0.095614035
## 774  0.026 0.974 zero Group1 390  109 1031   0 1.000000000 0.095614035
## 815  0.026 0.974 zero Group1 390  109 1031   0 1.000000000 0.095614035
## 867  0.026 0.974 zero Group1 390  109 1031   0 1.000000000 0.095614035
## 1095 0.026 0.974 zero Group1 390  109 1031   0 1.000000000 0.095614035
## 1154 0.026 0.974 zero Group1 390  109 1031   0 1.000000000 0.095614035
## 73   0.024 0.976 zero Group1 390  101 1039   0 1.000000000 0.088596491
## 511  0.024 0.976 zero Group1 390  101 1039   0 1.000000000 0.088596491
## 553  0.024 0.976 zero Group1 390  101 1039   0 1.000000000 0.088596491
## 752  0.024 0.976 zero Group1 390  101 1039   0 1.000000000 0.088596491
## 782  0.024 0.976 zero Group1 390  101 1039   0 1.000000000 0.088596491
## 793  0.024 0.976 zero Group1 390  101 1039   0 1.000000000 0.088596491
## 1108 0.024 0.976 zero Group1 390  101 1039   0 1.000000000 0.088596491
## 1446 0.024 0.976 zero Group1 390  101 1039   0 1.000000000 0.088596491
## 9    0.022 0.978 zero Group1 390   94 1046   0 1.000000000 0.082456140
## 438  0.022 0.978 zero Group1 390   94 1046   0 1.000000000 0.082456140
## 604  0.022 0.978 zero Group1 390   94 1046   0 1.000000000 0.082456140
## 773  0.022 0.978 zero Group1 390   94 1046   0 1.000000000 0.082456140
## 1294 0.022 0.978 zero Group1 390   94 1046   0 1.000000000 0.082456140
## 1301 0.022 0.978 zero Group1 390   94 1046   0 1.000000000 0.082456140
## 1492 0.022 0.978 zero Group1 390   94 1046   0 1.000000000 0.082456140
## 192  0.020 0.980 zero Group1 390   85 1055   0 1.000000000 0.074561404
## 451  0.020 0.980 zero Group1 390   85 1055   0 1.000000000 0.074561404
## 459  0.020 0.980 zero Group1 390   85 1055   0 1.000000000 0.074561404
## 505  0.020 0.980 zero Group1 390   85 1055   0 1.000000000 0.074561404
## 647  0.020 0.980 zero Group1 390   85 1055   0 1.000000000 0.074561404
## 692  0.020 0.980 zero Group1 390   85 1055   0 1.000000000 0.074561404
## 835  0.020 0.980 zero Group1 390   85 1055   0 1.000000000 0.074561404
## 839  0.020 0.980 zero Group1 390   85 1055   0 1.000000000 0.074561404
## 1241 0.020 0.980 zero Group1 390   85 1055   0 1.000000000 0.074561404
## 31   0.018 0.982 zero Group1 390   70 1070   0 1.000000000 0.061403509
## 39   0.018 0.982 zero Group1 390   70 1070   0 1.000000000 0.061403509
## 231  0.018 0.982 zero Group1 390   70 1070   0 1.000000000 0.061403509
## 357  0.018 0.982 zero Group1 390   70 1070   0 1.000000000 0.061403509
## 382  0.018 0.982 zero Group1 390   70 1070   0 1.000000000 0.061403509
## 450  0.018 0.982 zero Group1 390   70 1070   0 1.000000000 0.061403509
## 627  0.018 0.982 zero Group1 390   70 1070   0 1.000000000 0.061403509
## 722  0.018 0.982 zero Group1 390   70 1070   0 1.000000000 0.061403509
## 776  0.018 0.982 zero Group1 390   70 1070   0 1.000000000 0.061403509
## 889  0.018 0.982 zero Group1 390   70 1070   0 1.000000000 0.061403509
## 1019 0.018 0.982 zero Group1 390   70 1070   0 1.000000000 0.061403509
## 1036 0.018 0.982 zero Group1 390   70 1070   0 1.000000000 0.061403509
## 1112 0.018 0.982 zero Group1 390   70 1070   0 1.000000000 0.061403509
## 1158 0.018 0.982 zero Group1 390   70 1070   0 1.000000000 0.061403509
## 1224 0.018 0.982 zero Group1 390   70 1070   0 1.000000000 0.061403509
## 34   0.016 0.984 zero Group1 390   56 1084   0 1.000000000 0.049122807
## 191  0.016 0.984 zero Group1 390   56 1084   0 1.000000000 0.049122807
## 329  0.016 0.984 zero Group1 390   56 1084   0 1.000000000 0.049122807
## 405  0.016 0.984 zero Group1 390   56 1084   0 1.000000000 0.049122807
## 607  0.016 0.984 zero Group1 390   56 1084   0 1.000000000 0.049122807
## 713  0.016 0.984 zero Group1 390   56 1084   0 1.000000000 0.049122807
## 1013 0.016 0.984 zero Group1 390   56 1084   0 1.000000000 0.049122807
## 1016 0.016 0.984 zero Group1 390   56 1084   0 1.000000000 0.049122807
## 1092 0.016 0.984 zero Group1 390   56 1084   0 1.000000000 0.049122807
## 1256 0.016 0.984 zero Group1 390   56 1084   0 1.000000000 0.049122807
## 1350 0.016 0.984 zero Group1 390   56 1084   0 1.000000000 0.049122807
## 1373 0.016 0.984 zero Group1 390   56 1084   0 1.000000000 0.049122807
## 1522 0.016 0.984 zero Group1 390   56 1084   0 1.000000000 0.049122807
## 1525 0.016 0.984 zero Group1 390   56 1084   0 1.000000000 0.049122807
## 48   0.014 0.986 zero Group1 390   45 1095   0 1.000000000 0.039473684
## 130  0.014 0.986 zero Group1 390   45 1095   0 1.000000000 0.039473684
## 252  0.014 0.986 zero Group1 390   45 1095   0 1.000000000 0.039473684
## 769  0.014 0.986 zero Group1 390   45 1095   0 1.000000000 0.039473684
## 783  0.014 0.986 zero Group1 390   45 1095   0 1.000000000 0.039473684
## 784  0.014 0.986 zero Group1 390   45 1095   0 1.000000000 0.039473684
## 840  0.014 0.986 zero Group1 390   45 1095   0 1.000000000 0.039473684
## 851  0.014 0.986 zero Group1 390   45 1095   0 1.000000000 0.039473684
## 947  0.014 0.986 zero Group1 390   45 1095   0 1.000000000 0.039473684
## 1305 0.014 0.986 zero Group1 390   45 1095   0 1.000000000 0.039473684
## 1503 0.014 0.986 zero Group1 390   45 1095   0 1.000000000 0.039473684
## 110  0.012 0.988 zero Group1 390   35 1105   0 1.000000000 0.030701754
## 262  0.012 0.988 zero Group1 390   35 1105   0 1.000000000 0.030701754
## 305  0.012 0.988 zero Group1 390   35 1105   0 1.000000000 0.030701754
## 552  0.012 0.988 zero Group1 390   35 1105   0 1.000000000 0.030701754
## 985  0.012 0.988 zero Group1 390   35 1105   0 1.000000000 0.030701754
## 1060 0.012 0.988 zero Group1 390   35 1105   0 1.000000000 0.030701754
## 1138 0.012 0.988 zero Group1 390   35 1105   0 1.000000000 0.030701754
## 1308 0.012 0.988 zero Group1 390   35 1105   0 1.000000000 0.030701754
## 1409 0.012 0.988 zero Group1 390   35 1105   0 1.000000000 0.030701754
## 1451 0.012 0.988 zero Group1 390   35 1105   0 1.000000000 0.030701754
## 97   0.010 0.990 zero Group1 390   28 1112   0 1.000000000 0.024561404
## 502  0.010 0.990 zero Group1 390   28 1112   0 1.000000000 0.024561404
## 509  0.010 0.990 zero Group1 390   28 1112   0 1.000000000 0.024561404
## 551  0.010 0.990 zero Group1 390   28 1112   0 1.000000000 0.024561404
## 890  0.010 0.990 zero Group1 390   28 1112   0 1.000000000 0.024561404
## 1222 0.010 0.990 zero Group1 390   28 1112   0 1.000000000 0.024561404
## 1477 0.010 0.990 zero Group1 390   28 1112   0 1.000000000 0.024561404
## 139  0.008 0.992 zero Group1 390   25 1115   0 1.000000000 0.021929825
## 1088 0.008 0.992 zero Group1 390   25 1115   0 1.000000000 0.021929825
## 1235 0.008 0.992 zero Group1 390   25 1115   0 1.000000000 0.021929825
## 53   0.006 0.994 zero Group1 390   17 1123   0 1.000000000 0.014912281
## 225  0.006 0.994 zero Group1 390   17 1123   0 1.000000000 0.014912281
## 755  0.006 0.994 zero Group1 390   17 1123   0 1.000000000 0.014912281
## 1037 0.006 0.994 zero Group1 390   17 1123   0 1.000000000 0.014912281
## 1132 0.006 0.994 zero Group1 390   17 1123   0 1.000000000 0.014912281
## 1187 0.006 0.994 zero Group1 390   17 1123   0 1.000000000 0.014912281
## 1374 0.006 0.994 zero Group1 390   17 1123   0 1.000000000 0.014912281
## 1430 0.006 0.994 zero Group1 390   17 1123   0 1.000000000 0.014912281
## 328  0.004 0.996 zero Group1 390   10 1130   0 1.000000000 0.008771930
## 549  0.004 0.996 zero Group1 390   10 1130   0 1.000000000 0.008771930
## 603  0.004 0.996 zero Group1 390   10 1130   0 1.000000000 0.008771930
## 1083 0.004 0.996 zero Group1 390   10 1130   0 1.000000000 0.008771930
## 1206 0.004 0.996 zero Group1 390   10 1130   0 1.000000000 0.008771930
## 1227 0.004 0.996 zero Group1 390   10 1130   0 1.000000000 0.008771930
## 1296 0.004 0.996 zero Group1 390   10 1130   0 1.000000000 0.008771930
## 159  0.002 0.998 zero Group1 390    6 1134   0 1.000000000 0.005263158
## 504  0.002 0.998 zero Group1 390    6 1134   0 1.000000000 0.005263158
## 1135 0.002 0.998 zero Group1 390    6 1134   0 1.000000000 0.005263158
## 1236 0.002 0.998 zero Group1 390    6 1134   0 1.000000000 0.005263158
## 260  0.000 1.000 zero Group1 390    0 1140   0 1.000000000 0.000000000
## 379  0.000 1.000 zero Group1 390    0 1140   0 1.000000000 0.000000000
## 427  0.000 1.000 zero Group1 390    0 1140   0 1.000000000 0.000000000
## 478  0.000 1.000 zero Group1 390    0 1140   0 1.000000000 0.000000000
## 550  0.000 1.000 zero Group1 390    0 1140   0 1.000000000 0.000000000
## 1254 0.000 1.000 zero Group1 390    0 1140   0 1.000000000 0.000000000
##      Informedness      PREC       NPV      MARK         F1        MCC
## 409   0.002564103 1.0000000 0.7455853 0.7455853 0.00511509 0.04372365
## 636   0.005128205 1.0000000 0.7460733 0.7460733 0.01020408 0.06185481
## 718   0.004251012 0.6666667 0.7459070 0.4125737 0.01017812 0.04187906
## 969   0.006815115 0.7500000 0.7463958 0.4963958 0.01522843 0.05816351
## 1122  0.009379217 0.8000000 0.7468852 0.5468852 0.02025316 0.07161952
## 469   0.011943320 0.8333333 0.7473753 0.5807087 0.02525253 0.08328019
## 1388  0.014507422 0.8571429 0.7478661 0.6050089 0.03022670 0.09368628
## 144   0.019635628 0.8888889 0.7488494 0.6377383 0.04010025 0.11190350
## 284   0.019635628 0.8888889 0.7488494 0.6377383 0.04010025 0.11190350
## 634   0.024763833 0.9090909 0.7498354 0.6589263 0.04987531 0.12774013
## 1105  0.024763833 0.9090909 0.7498354 0.6589263 0.04987531 0.12774013
## 896   0.029892038 0.9230769 0.7508240 0.6739009 0.05955335 0.14193052
## 1316  0.029892038 0.9230769 0.7508240 0.6739009 0.05955335 0.14193052
## 138   0.031578947 0.8666667 0.7511551 0.6178218 0.06419753 0.13967878
## 348   0.031578947 0.8666667 0.7511551 0.6178218 0.06419753 0.13967878
## 492   0.036707152 0.8823529 0.7521481 0.6345010 0.07371007 0.15261299
## 970   0.036707152 0.8823529 0.7521481 0.6345010 0.07371007 0.15261299
## 665   0.039271255 0.8888889 0.7526455 0.6415344 0.07843137 0.15872574
## 1455  0.041835358 0.8947368 0.7531436 0.6478805 0.08312958 0.16463387
## 1031  0.044399460 0.9000000 0.7536424 0.6536424 0.08780488 0.17035659
## 146   0.046963563 0.9047619 0.7541418 0.6589037 0.09245742 0.17591039
## 113   0.054655870 0.9166667 0.7556441 0.6723108 0.10628019 0.19169176
## 391   0.054655870 0.9166667 0.7556441 0.6723108 0.10628019 0.19169176
## 1396  0.054655870 0.9166667 0.7556441 0.6723108 0.10628019 0.19169176
## 735   0.059784076 0.9230769 0.7566489 0.6797259 0.11538462 0.20158567
## 1457  0.059784076 0.9230769 0.7566489 0.6797259 0.11538462 0.20158567
## 666   0.062348178 0.9259259 0.7571524 0.6830783 0.11990408 0.20637027
## 394   0.072604588 0.9354839 0.7591728 0.6946567 0.13776722 0.22457796
## 490   0.072604588 0.9354839 0.7591728 0.6946567 0.13776722 0.22457796
## 827   0.072604588 0.9354839 0.7591728 0.6946567 0.13776722 0.22457796
## 1117  0.072604588 0.9354839 0.7591728 0.6946567 0.13776722 0.22457796
## 633   0.075168691 0.9375000 0.7596796 0.6971796 0.14218009 0.22892373
## 162   0.074291498 0.9090909 0.7595190 0.6686099 0.14184397 0.22287224
## 487   0.076855601 0.9117647 0.7600267 0.6717914 0.14622642 0.22722442
## 703   0.075978408 0.8857143 0.7598662 0.6455805 0.14588235 0.22147275
## 1413  0.075101215 0.8611111 0.7597055 0.6208166 0.14553991 0.21592610
## 874   0.080229420 0.8684211 0.7607239 0.6291449 0.15420561 0.22466849
## 1460  0.080229420 0.8684211 0.7607239 0.6291449 0.15420561 0.22466849
## 903   0.082793522 0.8717949 0.7612341 0.6330289 0.15850816 0.22893382
## 609   0.081039136 0.8292683 0.7609134 0.5901817 0.15777262 0.21869571
## 1439  0.081039136 0.8292683 0.7609134 0.5901817 0.15777262 0.21869571
## 836   0.082726046 0.8139535 0.7612643 0.5752178 0.16166282 0.21814099
## 1319  0.082726046 0.8139535 0.7612643 0.5752178 0.16166282 0.21814099
## 390   0.086977058 0.8043478 0.7621294 0.5664772 0.16972477 0.22196964
## 900   0.086977058 0.8043478 0.7621294 0.5664772 0.16972477 0.22196964
## 1052  0.086977058 0.8043478 0.7621294 0.5664772 0.16972477 0.22196964
## 169   0.089541161 0.8085106 0.7626433 0.5711539 0.17391304 0.22614550
## 71    0.092105263 0.8125000 0.7631579 0.5756579 0.17808219 0.23026316
## 832   0.097233468 0.8200000 0.7641892 0.5841892 0.18636364 0.23833326
## 976   0.097233468 0.8200000 0.7641892 0.5841892 0.18636364 0.23833326
## 828   0.099797571 0.8235294 0.7647059 0.5882353 0.19047619 0.24229002
## 1317  0.102361673 0.8269231 0.7652233 0.5921464 0.19457014 0.24619726
## 112   0.110053981 0.8363636 0.7667797 0.6031433 0.20674157 0.25763991
## 1172  0.110053981 0.8363636 0.7667797 0.6031433 0.20674157 0.25763991
## 1365  0.110053981 0.8363636 0.7667797 0.6031433 0.20674157 0.25763991
## 973   0.112618084 0.8392857 0.7672999 0.6065856 0.21076233 0.26136661
## 388   0.117746289 0.8448276 0.7683424 0.6131700 0.21875000 0.26869777
## 812   0.117746289 0.8448276 0.7683424 0.6131700 0.21875000 0.26869777
## 730   0.119433198 0.8333333 0.7687075 0.6020408 0.22222222 0.26814858
## 938   0.119433198 0.8333333 0.7687075 0.6020408 0.22222222 0.26814858
## 151   0.121997301 0.8360656 0.7692308 0.6052963 0.22616408 0.27174348
## 1176  0.124561404 0.8387097 0.7697548 0.6084644 0.23008850 0.27530199
## 975   0.127125506 0.8412698 0.7702795 0.6115493 0.23399558 0.27882524
## 540   0.128812416 0.8307692 0.7706485 0.6014177 0.23736264 0.27833445
## 732   0.128812416 0.8307692 0.7706485 0.6014177 0.23736264 0.27833445
## 78    0.136504723 0.8382353 0.7722298 0.6104651 0.24890830 0.28867174
## 879   0.136504723 0.8382353 0.7722298 0.6104651 0.24890830 0.28867174
## 1045  0.136504723 0.8382353 0.7722298 0.6104651 0.24890830 0.28867174
## 1197  0.135627530 0.8260870 0.7720739 0.5981609 0.24836601 0.28482816
## 1274  0.134750337 0.8142857 0.7719178 0.5862035 0.24782609 0.28105359
## 449   0.135560054 0.7945205 0.7721345 0.5666551 0.25053996 0.27715662
## 592   0.135560054 0.7945205 0.7721345 0.5666551 0.25053996 0.27715662
## 1438  0.135560054 0.7945205 0.7721345 0.5666551 0.25053996 0.27715662
## 255   0.134682861 0.7837838 0.7719780 0.5557618 0.25000000 0.27359019
## 320   0.139811066 0.7894737 0.7730399 0.5625136 0.25751073 0.28043827
## 417   0.139811066 0.7894737 0.7730399 0.5625136 0.25751073 0.28043827
## 605   0.138933873 0.7792208 0.7728837 0.5521045 0.25695931 0.27695850
## 600   0.138056680 0.7692308 0.7727273 0.5419580 0.25641026 0.27353414
## 731   0.140620783 0.7721519 0.7732598 0.5454117 0.26012793 0.27694083
## 107   0.144871795 0.7682927 0.7741713 0.5424640 0.26694915 0.28033503
## 115   0.144871795 0.7682927 0.7741713 0.5424640 0.26694915 0.28033503
## 632   0.144871795 0.7682927 0.7741713 0.5424640 0.26694915 0.28033503
## 344   0.146558704 0.7619048 0.7745505 0.5364552 0.27004219 0.28039648
## 642   0.146558704 0.7619048 0.7745505 0.5364552 0.27004219 0.28039648
## 325   0.148245614 0.7558140 0.7749307 0.5307447 0.27310924 0.28050058
## 415   0.148245614 0.7558140 0.7749307 0.5307447 0.27310924 0.28050058
## 145   0.153373819 0.7613636 0.7760055 0.5373692 0.28033473 0.28708599
## 878   0.153373819 0.7613636 0.7760055 0.5373692 0.28033473 0.28708599
## 467   0.154183536 0.7472527 0.7762335 0.5234862 0.28274428 0.28410026
## 760   0.154183536 0.7472527 0.7762335 0.5234862 0.28274428 0.28410026
## 856   0.154183536 0.7472527 0.7762335 0.5234862 0.28274428 0.28410026
## 686   0.155870445 0.7419355 0.7766180 0.5185534 0.28571429 0.28430117
## 885   0.155870445 0.7419355 0.7766180 0.5185534 0.28571429 0.28430117
## 149   0.162685560 0.7422680 0.7780879 0.5203560 0.29568789 0.29095430
## 583   0.162685560 0.7422680 0.7780879 0.5203560 0.29568789 0.29095430
## 687   0.162685560 0.7422680 0.7780879 0.5203560 0.29568789 0.29095430
## 1362  0.162685560 0.7422680 0.7780879 0.5203560 0.29568789 0.29095430
## 1359  0.167813765 0.7474747 0.7791754 0.5266501 0.30265849 0.29728630
## 1397  0.167813765 0.7474747 0.7791754 0.5266501 0.30265849 0.29728630
## 594   0.170377868 0.7500000 0.7797203 0.5297203 0.30612245 0.30042072
## 857   0.172941970 0.7524752 0.7802659 0.5327412 0.30957230 0.30353469
## 173   0.181443995 0.7476636 0.7821504 0.5298139 0.32193159 0.31005089
## 281   0.181443995 0.7476636 0.7821504 0.5298139 0.32193159 0.31005089
## 316   0.181443995 0.7476636 0.7821504 0.5298139 0.32193159 0.31005089
## 413   0.181443995 0.7476636 0.7821504 0.5298139 0.32193159 0.31005089
## 1004  0.181443995 0.7476636 0.7821504 0.5298139 0.32193159 0.31005089
## 1251  0.181443995 0.7476636 0.7821504 0.5298139 0.32193159 0.31005089
## 877   0.184008097 0.7500000 0.7827004 0.5327004 0.32530120 0.31308336
## 59    0.188259109 0.7477477 0.7836505 0.5313982 0.33133733 0.31629188
## 801   0.188259109 0.7477477 0.7836505 0.5313982 0.33133733 0.31629188
## 1219  0.188259109 0.7477477 0.7836505 0.5313982 0.33133733 0.31629188
## 175   0.197638327 0.7500000 0.7857143 0.5357143 0.34387352 0.32538850
## 372   0.197638327 0.7500000 0.7857143 0.5357143 0.34387352 0.32538850
## 537   0.197638327 0.7500000 0.7857143 0.5357143 0.34387352 0.32538850
## 1147  0.197638327 0.7500000 0.7857143 0.5357143 0.34387352 0.32538850
## 1177  0.197638327 0.7500000 0.7857143 0.5357143 0.34387352 0.32538850
## 245   0.204453441 0.7500000 0.7872340 0.5372340 0.35294118 0.33142020
## 728   0.204453441 0.7500000 0.7872340 0.5372340 0.35294118 0.33142020
## 1173  0.204453441 0.7500000 0.7872340 0.5372340 0.35294118 0.33142020
## 1344  0.204453441 0.7500000 0.7872340 0.5372340 0.35294118 0.33142020
## 168   0.212145749 0.7560976 0.7889126 0.5450101 0.36257310 0.34003174
## 247   0.212145749 0.7560976 0.7889126 0.5450101 0.36257310 0.34003174
## 447   0.212145749 0.7560976 0.7889126 0.5450101 0.36257310 0.34003174
## 411   0.217273954 0.7600000 0.7900356 0.5500356 0.36893204 0.34569988
## 886   0.217273954 0.7600000 0.7900356 0.5500356 0.36893204 0.34569988
## 147   0.222402159 0.7637795 0.7911618 0.5549413 0.37524178 0.35131204
## 587   0.222402159 0.7637795 0.7911618 0.5549413 0.37524178 0.35131204
## 315   0.230094467 0.7692308 0.7928571 0.5620879 0.38461538 0.35962942
## 519   0.230094467 0.7692308 0.7928571 0.5620879 0.38461538 0.35962942
## 1386  0.230094467 0.7692308 0.7928571 0.5620879 0.38461538 0.35962942
## 1145  0.232658570 0.7709924 0.7934239 0.5644162 0.38771593 0.36237588
## 802   0.234345479 0.7669173 0.7938440 0.5607612 0.39005736 0.36250774
## 881   0.234345479 0.7669173 0.7938440 0.5607612 0.39005736 0.36250774
## 516   0.238596491 0.7647059 0.7948350 0.5595409 0.39543726 0.36538267
## 579   0.238596491 0.7647059 0.7948350 0.5595409 0.39543726 0.36538267
## 1070  0.238596491 0.7647059 0.7948350 0.5595409 0.39543726 0.36538267
## 805   0.241160594 0.7664234 0.7954056 0.5618290 0.39848197 0.36809103
## 1287  0.243724696 0.7681159 0.7959770 0.5640930 0.40151515 0.37078752
## 267   0.245411606 0.7642857 0.7964029 0.5606886 0.40377358 0.37094405
## 630   0.245411606 0.7642857 0.7964029 0.5606886 0.40377358 0.37094405
## 442   0.244534413 0.7588652 0.7962563 0.5551215 0.40301318 0.36843768
## 1385  0.247098516 0.7605634 0.7968300 0.5573934 0.40601504 0.37112137
## 733   0.249662618 0.7622378 0.7974045 0.5596422 0.40900563 0.37379372
## 243   0.254790823 0.7655172 0.7985560 0.5640732 0.41495327 0.37910510
## 314   0.254790823 0.7655172 0.7985560 0.5640732 0.41495327 0.37910510
## 800   0.257354926 0.7671233 0.7991329 0.5662562 0.41791045 0.38174446
## 140   0.259041835 0.7635135 0.7995658 0.5630794 0.42007435 0.38191768
## 623   0.259041835 0.7635135 0.7995658 0.5630794 0.42007435 0.38191768
## 1069  0.264170040 0.7666667 0.8007246 0.5673913 0.42592593 0.38715344
## 1384  0.264170040 0.7666667 0.8007246 0.5673913 0.42592593 0.38715344
## 341   0.265856950 0.7631579 0.8011611 0.5643190 0.42804428 0.38733465
## 702   0.265856950 0.7631579 0.8011611 0.5643190 0.42804428 0.38733465
## 1231  0.264979757 0.7581699 0.8010167 0.5591866 0.42725599 0.38493264
## 806   0.267543860 0.7597403 0.8015988 0.5613391 0.43014706 0.38753429
## 654   0.272672065 0.7628205 0.8027656 0.5655862 0.43589744 0.39270797
## 1104  0.272672065 0.7628205 0.8027656 0.5655862 0.43589744 0.39270797
## 488   0.275236167 0.7643312 0.8033503 0.5676815 0.43875686 0.39528027
## 47    0.279487179 0.7625000 0.8043796 0.5668796 0.44363636 0.39803966
## 1146  0.279487179 0.7625000 0.8043796 0.5668796 0.44363636 0.39803966
## 1464  0.279487179 0.7625000 0.8043796 0.5668796 0.44363636 0.39803966
## 1175  0.282051282 0.7639752 0.8049671 0.5689423 0.44646098 0.40058819
## 273   0.282860999 0.7560976 0.8052709 0.5613684 0.44765343 0.39848367
## 515   0.282860999 0.7560976 0.8052709 0.5613684 0.44765343 0.39848367
## 578   0.282860999 0.7560976 0.8052709 0.5613684 0.44765343 0.39848367
## 170   0.287112011 0.7544910 0.8063096 0.5608006 0.45242370 0.40126375
## 736   0.287112011 0.7544910 0.8063096 0.5608006 0.45242370 0.40126375
## 1065  0.287112011 0.7544910 0.8063096 0.5608006 0.45242370 0.40126375
## 663   0.289676113 0.7559524 0.8069016 0.5628540 0.45519713 0.40378875
## 11    0.288798920 0.7514793 0.8067597 0.5582390 0.45438283 0.40152064
## 1042  0.290485830 0.7485380 0.8072112 0.5557492 0.45632799 0.40179257
## 1393  0.290485830 0.7485380 0.8072112 0.5557492 0.45632799 0.40179257
## 1456  0.292172740 0.7456647 0.8076640 0.5533287 0.45825933 0.40207905
## 1496  0.292172740 0.7456647 0.8076640 0.5533287 0.45825933 0.40207905
## 7     0.293859649 0.7428571 0.8081181 0.5509752 0.46017699 0.40237965
## 1028  0.293859649 0.7428571 0.8081181 0.5509752 0.46017699 0.40237965
## 1103  0.296423752 0.7443182 0.8087149 0.5530331 0.46289753 0.40488535
## 452   0.294669366 0.7359551 0.8084320 0.5443870 0.46126761 0.40051738
## 846   0.294669366 0.7359551 0.8084320 0.5443870 0.46126761 0.40051738
## 311   0.302361673 0.7403315 0.8102298 0.5505613 0.46935201 0.40800568
## 899   0.302361673 0.7403315 0.8102298 0.5505613 0.46935201 0.40800568
## 1463  0.302361673 0.7403315 0.8102298 0.5505613 0.46935201 0.40800568
## 617   0.301484480 0.7362637 0.8100890 0.5463528 0.46853147 0.40585327
## 378   0.300607287 0.7322404 0.8099480 0.5421885 0.46771379 0.40371500
## 1030  0.303171390 0.7336957 0.8105498 0.5442454 0.47038328 0.40620148
## 1436  0.302294197 0.7297297 0.8104089 0.5401387 0.46956522 0.40408017
## 1364  0.304858300 0.7311828 0.8110119 0.5421947 0.47222222 0.40656187
## 804   0.307422402 0.7326203 0.8116158 0.5442361 0.47487002 0.40903590
## 27    0.308232119 0.7263158 0.8119403 0.5382561 0.47586207 0.40731783
## 1068  0.308232119 0.7263158 0.8119403 0.5382561 0.47586207 0.40731783
## 1443  0.308232119 0.7263158 0.8119403 0.5382561 0.47586207 0.40731783
## 137   0.309041835 0.7202073 0.8122663 0.5324735 0.47684391 0.40565576
## 375   0.309041835 0.7202073 0.8122663 0.5324735 0.47684391 0.40565576
## 674   0.309041835 0.7202073 0.8122663 0.5324735 0.47684391 0.40565576
## 1100  0.313292848 0.7193878 0.8133433 0.5327311 0.48122867 0.40853499
## 1203  0.313292848 0.7193878 0.8133433 0.5327311 0.48122867 0.40853499
## 1321  0.313292848 0.7193878 0.8133433 0.5327311 0.48122867 0.40853499
## 894   0.314979757 0.7171717 0.8138138 0.5309855 0.48299320 0.40896173
## 1040  0.314979757 0.7171717 0.8138138 0.5309855 0.48299320 0.40896173
## 256   0.316666667 0.7150000 0.8142857 0.5292857 0.48474576 0.40939851
## 638   0.316666667 0.7150000 0.8142857 0.5292857 0.48474576 0.40939851
## 172   0.322604588 0.7121951 0.8158491 0.5280442 0.49075630 0.41273415
## 283   0.322604588 0.7121951 0.8158491 0.5280442 0.49075630 0.41273415
## 855   0.322604588 0.7121951 0.8158491 0.5280442 0.49075630 0.41273415
## 1002  0.322604588 0.7121951 0.8158491 0.5280442 0.49075630 0.41273415
## 1066  0.322604588 0.7121951 0.8158491 0.5280442 0.49075630 0.41273415
## 164   0.331983806 0.7142857 0.8181818 0.5324675 0.50000000 0.42044096
## 345   0.331983806 0.7142857 0.8181818 0.5324675 0.50000000 0.42044096
## 1454  0.331983806 0.7142857 0.8181818 0.5324675 0.50000000 0.42044096
## 1458  0.331983806 0.7142857 0.8181818 0.5324675 0.50000000 0.42044096
## 1467  0.331983806 0.7142857 0.8181818 0.5324675 0.50000000 0.42044096
## 142   0.341363023 0.7162791 0.8205323 0.5368114 0.50909091 0.42807424
## 389   0.341363023 0.7162791 0.8205323 0.5368114 0.50909091 0.42807424
## 807   0.341363023 0.7162791 0.8205323 0.5368114 0.50909091 0.42807424
## 909   0.341363023 0.7162791 0.8205323 0.5368114 0.50909091 0.42807424
## 1466  0.341363023 0.7162791 0.8205323 0.5368114 0.50909091 0.42807424
## 831   0.343927126 0.7175926 0.8211568 0.5387494 0.51155116 0.43045385
## 1067  0.346491228 0.7188940 0.8217822 0.5406762 0.51400329 0.43282740
## 70    0.350742240 0.7181818 0.8229008 0.5410826 0.51803279 0.43563806
## 727   0.350742240 0.7181818 0.8229008 0.5410826 0.51803279 0.43563806
## 1421  0.350742240 0.7181818 0.8229008 0.5410826 0.51803279 0.43563806
## 307   0.351551957 0.7130045 0.8232594 0.5362639 0.51876020 0.43419421
## 555   0.351551957 0.7130045 0.8232594 0.5362639 0.51876020 0.43419421
## 953   0.351551957 0.7130045 0.8232594 0.5362639 0.51876020 0.43419421
## 25    0.350674764 0.7098214 0.8231240 0.5329455 0.51791531 0.43230837
## 318   0.357489879 0.7105263 0.8248848 0.5354111 0.52427184 0.43749749
## 870   0.357489879 0.7105263 0.8248848 0.5354111 0.52427184 0.43749749
## 1043  0.357489879 0.7105263 0.8248848 0.5354111 0.52427184 0.43749749
## 1392  0.357489879 0.7105263 0.8248848 0.5354111 0.52427184 0.43749749
## 310   0.359176788 0.7086957 0.8253846 0.5340803 0.52580645 0.43798314
## 1519  0.359176788 0.7086957 0.8253846 0.5340803 0.52580645 0.43798314
## 624   0.359109312 0.7008547 0.8256173 0.5264720 0.52564103 0.43481144
## 891   0.359109312 0.7008547 0.8256173 0.5264720 0.52564103 0.43481144
## 1337  0.359109312 0.7008547 0.8256173 0.5264720 0.52564103 0.43481144
## 1394  0.359109312 0.7008547 0.8256173 0.5264720 0.52564103 0.43481144
## 980   0.357354926 0.6949153 0.8253478 0.5202630 0.52396166 0.43118273
## 982   0.357354926 0.6949153 0.8253478 0.5202630 0.52396166 0.43118273
## 788   0.355600540 0.6890756 0.8250774 0.5141530 0.52229299 0.42758987
## 932   0.355600540 0.6890756 0.8250774 0.5141530 0.52229299 0.42758987
## 966   0.358164642 0.6903766 0.8257165 0.5160931 0.52464229 0.42993754
## 230   0.355533063 0.6818182 0.8253106 0.5071287 0.52215190 0.42461869
## 771   0.355533063 0.6818182 0.8253106 0.5071287 0.52215190 0.42461869
## 1511  0.355533063 0.6818182 0.8253106 0.5071287 0.52215190 0.42461869
## 28    0.352901484 0.6734694 0.8249027 0.4983721 0.51968504 0.41937603
## 52    0.352901484 0.6734694 0.8249027 0.4983721 0.51968504 0.41937603
## 129   0.352901484 0.6734694 0.8249027 0.4983721 0.51968504 0.41937603
## 888   0.352024291 0.6707317 0.8247664 0.4954981 0.51886792 0.41764501
## 419   0.351956815 0.6640000 0.8250000 0.4890000 0.51875000 0.41485767
## 764   0.351956815 0.6640000 0.8250000 0.4890000 0.51875000 0.41485767
## 1055  0.351956815 0.6640000 0.8250000 0.4890000 0.51875000 0.41485767
## 1513  0.351956815 0.6640000 0.8250000 0.4890000 0.51875000 0.41485767
## 780   0.353643725 0.6626984 0.8255086 0.4882070 0.52024922 0.41551336
## 1292  0.353643725 0.6626984 0.8255086 0.4882070 0.52024922 0.41551336
## 414   0.355330634 0.6614173 0.8260188 0.4874361 0.52173913 0.41617423
## 678   0.355330634 0.6614173 0.8260188 0.4874361 0.52173913 0.41617423
## 250   0.357017544 0.6601562 0.8265306 0.4866869 0.52321981 0.41684020
## 734   0.357017544 0.6601562 0.8265306 0.4866869 0.52321981 0.41684020
## 198   0.353508772 0.6500000 0.8259843 0.4759843 0.52000000 0.41020069
## 498   0.353508772 0.6500000 0.8259843 0.4759843 0.52000000 0.41020069
## 705   0.353508772 0.6500000 0.8259843 0.4759843 0.52000000 0.41020069
## 848   0.353508772 0.6500000 0.8259843 0.4759843 0.52000000 0.41020069
## 563   0.356072874 0.6513410 0.8266351 0.4779761 0.52227343 0.41254617
## 631   0.357759784 0.6501901 0.8271507 0.4773409 0.52373660 0.41324734
## 757   0.357759784 0.6501901 0.8271507 0.4773409 0.52373660 0.41324734
## 880   0.358569501 0.6466165 0.8275316 0.4741482 0.52439024 0.41232885
## 1261  0.358569501 0.6466165 0.8275316 0.4741482 0.52439024 0.41232885
## 1444  0.358569501 0.6466165 0.8275316 0.4741482 0.52439024 0.41232885
## 143   0.360256410 0.6455224 0.8280507 0.4735731 0.52583587 0.41304690
## 1440  0.360256410 0.6455224 0.8280507 0.4735731 0.52583587 0.41304690
## 61    0.358502024 0.6407407 0.8277778 0.4685185 0.52424242 0.40983513
## 443   0.358502024 0.6407407 0.8277778 0.4685185 0.52424242 0.40983513
## 232   0.361875843 0.6386861 0.8288217 0.4675078 0.52710843 0.41131469
## 972   0.361875843 0.6386861 0.8288217 0.4675078 0.52710843 0.41131469
## 1050  0.361875843 0.6386861 0.8288217 0.4675078 0.52710843 0.41131469
## 1271  0.361875843 0.6386861 0.8288217 0.4675078 0.52710843 0.41131469
## 738   0.367004049 0.6413043 0.8301435 0.4714479 0.53153153 0.41596068
## 1213  0.367004049 0.6413043 0.8301435 0.4714479 0.53153153 0.41596068
## 100   0.368690958 0.6402878 0.8306709 0.4709587 0.53293413 0.41669919
## 1371  0.368690958 0.6402878 0.8306709 0.4709587 0.53293413 0.41669919
## 1119  0.373819163 0.6428571 0.8320000 0.4748571 0.53731343 0.42132019
## 1468  0.373819163 0.6428571 0.8320000 0.4748571 0.53731343 0.42132019
## 795   0.374628880 0.6395760 0.8323978 0.4719737 0.53789004 0.42049374
## 841   0.374628880 0.6395760 0.8323978 0.4719737 0.53789004 0.42049374
## 897   0.374628880 0.6395760 0.8323978 0.4719737 0.53789004 0.42049374
## 303   0.378002699 0.6376307 0.8334674 0.4710981 0.54062038 0.42199093
## 658   0.378002699 0.6376307 0.8334674 0.4710981 0.54062038 0.42199093
## 739   0.378002699 0.6376307 0.8334674 0.4710981 0.54062038 0.42199093
## 765   0.378002699 0.6376307 0.8334674 0.4710981 0.54062038 0.42199093
## 248   0.384817814 0.6391753 0.8353511 0.4745263 0.54625551 0.42732446
## 1101  0.384817814 0.6391753 0.8353511 0.4745263 0.54625551 0.42732446
## 1291  0.384817814 0.6391753 0.8353511 0.4745263 0.54625551 0.42732446
## 1481  0.384817814 0.6391753 0.8353511 0.4745263 0.54625551 0.42732446
## 99    0.394197031 0.6418919 0.8379254 0.4798173 0.55393586 0.43490524
## 221   0.394197031 0.6418919 0.8379254 0.4798173 0.55393586 0.43490524
## 930   0.394197031 0.6418919 0.8379254 0.4798173 0.55393586 0.43490524
## 1032  0.394197031 0.6418919 0.8379254 0.4798173 0.55393586 0.43490524
## 1311  0.394197031 0.6418919 0.8379254 0.4798173 0.55393586 0.43490524
## 1020  0.398448043 0.6421405 0.8391552 0.4812956 0.55732946 0.43791700
## 1282  0.398448043 0.6421405 0.8391552 0.4812956 0.55732946 0.43791700
## 1314  0.398448043 0.6421405 0.8391552 0.4812956 0.55732946 0.43791700
## 826   0.402699055 0.6423841 0.8403909 0.4827750 0.56069364 0.44092293
## 901   0.402699055 0.6423841 0.8403909 0.4827750 0.56069364 0.44092293
## 1208  0.402699055 0.6423841 0.8403909 0.4827750 0.56069364 0.44092293
## 296   0.406950067 0.6426230 0.8416327 0.4842556 0.56402878 0.44392325
## 591   0.406950067 0.6426230 0.8416327 0.4842556 0.56402878 0.44392325
## 737   0.406950067 0.6426230 0.8416327 0.4842556 0.56402878 0.44392325
## 72    0.408636977 0.6416938 0.8421913 0.4838851 0.56527977 0.44467220
## 1283  0.408636977 0.6416938 0.8421913 0.4838851 0.56527977 0.44467220
## 566   0.407759784 0.6396104 0.8420622 0.4816726 0.56446991 0.44317796
## 1202  0.406882591 0.6375405 0.8419328 0.4794733 0.56366237 0.44168919
## 637   0.413697706 0.6389776 0.8438784 0.4828560 0.56899004 0.44694119
## 1034  0.413697706 0.6389776 0.8438784 0.4828560 0.56899004 0.44694119
## 1290  0.413697706 0.6389776 0.8438784 0.4828560 0.56899004 0.44694119
## 1389  0.413697706 0.6389776 0.8438784 0.4828560 0.56899004 0.44694119
## 1033  0.415384615 0.6380952 0.8444444 0.4825397 0.57021277 0.44770477
## 1462  0.415384615 0.6380952 0.8444444 0.4825397 0.57021277 0.44770477
## 907   0.416194332 0.6352201 0.8448845 0.4801046 0.57062147 0.44700875
## 1121  0.416194332 0.6352201 0.8448845 0.4801046 0.57062147 0.44700875
## 1419  0.416194332 0.6352201 0.8448845 0.4801046 0.57062147 0.44700875
## 557   0.420445344 0.6355140 0.8461538 0.4816679 0.57383966 0.45001668
## 1170  0.420445344 0.6355140 0.8461538 0.4816679 0.57383966 0.45001668
## 1360  0.420445344 0.6355140 0.8461538 0.4816679 0.57383966 0.45001668
## 1356  0.423009447 0.6366460 0.8468543 0.4835003 0.57584270 0.45224460
## 258   0.424696356 0.6358025 0.8474295 0.4832320 0.57703081 0.45301972
## 661   0.424696356 0.6358025 0.8474295 0.4832320 0.57703081 0.45301972
## 30    0.428070175 0.6341463 0.8485857 0.4827320 0.57938719 0.45458023
## 41    0.428070175 0.6341463 0.8485857 0.4827320 0.57938719 0.45458023
## 240   0.428070175 0.6341463 0.8485857 0.4827320 0.57938719 0.45458023
## 1212  0.428070175 0.6341463 0.8485857 0.4827320 0.57938719 0.45458023
## 136   0.428879892 0.6314199 0.8490409 0.4804608 0.57975035 0.45393830
## 332   0.428879892 0.6314199 0.8490409 0.4804608 0.57975035 0.45393830
## 1377  0.428879892 0.6314199 0.8490409 0.4804608 0.57975035 0.45393830
## 543   0.429689609 0.6287425 0.8494983 0.4782408 0.58011050 0.45331570
## 562   0.429689609 0.6287425 0.8494983 0.4782408 0.58011050 0.45331570
## 681   0.429689609 0.6287425 0.8494983 0.4782408 0.58011050 0.45331570
## 497   0.431376518 0.6279762 0.8500838 0.4780599 0.58126722 0.45411874
## 1390  0.431376518 0.6279762 0.8500838 0.4780599 0.58126722 0.45411874
## 338   0.439068826 0.6312684 0.8522250 0.4834935 0.58710562 0.46074603
## 580   0.439068826 0.6312684 0.8522250 0.4834935 0.58710562 0.46074603
## 664   0.439068826 0.6312684 0.8522250 0.4834935 0.58710562 0.46074603
## 45    0.437314440 0.6275660 0.8519765 0.4795424 0.58549932 0.45794195
## 158   0.437314440 0.6275660 0.8519765 0.4795424 0.58549932 0.45794195
## 997   0.436437247 0.6257310 0.8518519 0.4775828 0.58469945 0.45654676
## 554   0.436369771 0.6213873 0.8521959 0.4735832 0.58423913 0.45459587
## 668   0.436369771 0.6213873 0.8521959 0.4735832 0.58423913 0.45459587
## 823   0.436369771 0.6213873 0.8521959 0.4735832 0.58423913 0.45459587
## 1131  0.436369771 0.6213873 0.8521959 0.4735832 0.58423913 0.45459587
## 1422  0.435492578 0.6195965 0.8520710 0.4716675 0.58344640 0.45321928
## 227   0.434615385 0.6178161 0.8519459 0.4697619 0.58265583 0.45184706
## 197   0.431983806 0.6125356 0.8515691 0.4641047 0.58029690 0.44775633
## 676   0.431983806 0.6125356 0.8515691 0.4641047 0.58029690 0.44775633
## 1402  0.431983806 0.6125356 0.8515691 0.4641047 0.58029690 0.44775633
## 957   0.434547908 0.6136364 0.8522920 0.4659284 0.58221024 0.44996467
## 808   0.436234818 0.6129944 0.8528912 0.4658855 0.58333333 0.45081646
## 1404  0.436234818 0.6129944 0.8528912 0.4658855 0.58333333 0.45081646
## 1169  0.437921727 0.6123596 0.8534923 0.4658519 0.58445040 0.45167097
## 1382  0.437921727 0.6123596 0.8534923 0.4658519 0.58445040 0.45167097
## 205   0.437044534 0.6106443 0.8533674 0.4640117 0.58366801 0.45032630
## 1472  0.436167341 0.6089385 0.8532423 0.4621809 0.58288770 0.44898575
## 242   0.437854251 0.6083333 0.8538462 0.4621795 0.58400000 0.44985248
## 295   0.437854251 0.6083333 0.8538462 0.4621795 0.58400000 0.44985248
## 512   0.436977058 0.6066482 0.8537211 0.4603693 0.58322237 0.44852072
## 590   0.435222672 0.6033058 0.8534704 0.4567762 0.58167331 0.44586923
## 696   0.435222672 0.6033058 0.8534704 0.4567762 0.58167331 0.44586923
## 496   0.434345479 0.6016484 0.8533448 0.4549931 0.58090186 0.44454944
## 729   0.436909582 0.6027397 0.8540773 0.4568170 0.58278146 0.44675241
## 744   0.436032389 0.6010929 0.8539519 0.4550448 0.58201058 0.44543716
## 46    0.431646424 0.5929919 0.8533218 0.4463137 0.57818660 0.43891882
## 353   0.431646424 0.5929919 0.8533218 0.4463137 0.57818660 0.43891882
## 474   0.431646424 0.5929919 0.8533218 0.4463137 0.57818660 0.43891882
## 691   0.431646424 0.5929919 0.8533218 0.4463137 0.57818660 0.43891882
## 697   0.431646424 0.5929919 0.8533218 0.4463137 0.57818660 0.43891882
## 68    0.435897436 0.5935829 0.8546713 0.4482542 0.58115183 0.44203263
## 312   0.435897436 0.5935829 0.8546713 0.4482542 0.58115183 0.44203263
## 1381  0.435897436 0.5935829 0.8546713 0.4482542 0.58115183 0.44203263
## 571   0.434143050 0.5904255 0.8544194 0.4448449 0.57963446 0.43946142
## 1299  0.434143050 0.5904255 0.8544194 0.4448449 0.57963446 0.43946142
## 213   0.437516869 0.5894737 0.8556522 0.4451259 0.58181818 0.44130496
## 339   0.437516869 0.5894737 0.8556522 0.4451259 0.58181818 0.44130496
## 398   0.437516869 0.5894737 0.8556522 0.4451259 0.58181818 0.44130496
## 1143  0.437516869 0.5894737 0.8556522 0.4451259 0.58181818 0.44130496
## 81    0.436572200 0.5844156 0.8558952 0.4403108 0.58064516 0.43843751
## 725   0.436572200 0.5844156 0.8558952 0.4403108 0.58064516 0.43843751
## 785   0.436572200 0.5844156 0.8558952 0.4403108 0.58064516 0.43843751
## 959   0.436572200 0.5844156 0.8558952 0.4403108 0.58064516 0.43843751
## 1518  0.436572200 0.5844156 0.8558952 0.4403108 0.58064516 0.43843751
## 639   0.431309042 0.5754476 0.8551361 0.4305837 0.57618438 0.43094620
## 704   0.431309042 0.5754476 0.8551361 0.4305837 0.57618438 0.43094620
## 1056  0.431309042 0.5754476 0.8551361 0.4305837 0.57618438 0.43094620
## 1244  0.431309042 0.5754476 0.8551361 0.4305837 0.57618438 0.43094620
## 1298  0.431309042 0.5754476 0.8551361 0.4305837 0.57618438 0.43094620
## 1424  0.431309042 0.5754476 0.8551361 0.4305837 0.57618438 0.43094620
## 15    0.435560054 0.5761421 0.8565141 0.4326562 0.57908163 0.43410571
## 387   0.435560054 0.5761421 0.8565141 0.4326562 0.57908163 0.43410571
## 657   0.435560054 0.5761421 0.8565141 0.4326562 0.57908163 0.43410571
## 167   0.439811066 0.5768262 0.8578994 0.4347256 0.58195680 0.43726093
## 958   0.439811066 0.5768262 0.8578994 0.4347256 0.58195680 0.43726093
## 1057  0.439811066 0.5768262 0.8578994 0.4347256 0.58195680 0.43726093
## 547   0.437179487 0.5725000 0.8575221 0.4300221 0.57974684 0.43358604
## 685   0.437179487 0.5725000 0.8575221 0.4300221 0.57974684 0.43358604
## 775   0.437179487 0.5725000 0.8575221 0.4300221 0.57974684 0.43358604
## 181   0.437112011 0.5693069 0.8579041 0.4272110 0.57934509 0.43213316
## 254   0.437112011 0.5693069 0.8579041 0.4272110 0.57934509 0.43213316
## 577   0.437112011 0.5693069 0.8579041 0.4272110 0.57934509 0.43213316
## 675   0.437112011 0.5693069 0.8579041 0.4272110 0.57934509 0.43213316
## 174   0.444804318 0.5724816 0.8601959 0.4326775 0.58469260 0.43869900
## 655   0.444804318 0.5724816 0.8601959 0.4326775 0.58469260 0.43869900
## 876   0.444804318 0.5724816 0.8601959 0.4326775 0.58469260 0.43869900
## 277   0.440418354 0.5655340 0.8595707 0.4251046 0.58104738 0.43269376
## 290   0.440418354 0.5655340 0.8595707 0.4251046 0.58104738 0.43269376
## 424   0.440418354 0.5655340 0.8595707 0.4251046 0.58104738 0.43269376
## 762   0.440418354 0.5655340 0.8595707 0.4251046 0.58104738 0.43269376
## 1353  0.440418354 0.5655340 0.8595707 0.4251046 0.58104738 0.43269376
## 21    0.442105263 0.5652174 0.8602151 0.4254324 0.58208955 0.43368874
## 824   0.442105263 0.5652174 0.8602151 0.4254324 0.58208955 0.43368874
## 69    0.440350877 0.5625000 0.8599641 0.4224641 0.58064516 0.43131477
## 199   0.440350877 0.5625000 0.8599641 0.4224641 0.58064516 0.43131477
## 189   0.442847503 0.5605701 0.8611362 0.4217062 0.58199753 0.43214760
## 777   0.442847503 0.5605701 0.8611362 0.4217062 0.58199753 0.43214760
## 1044  0.442847503 0.5605701 0.8611362 0.4217062 0.58199753 0.43214760
## 1073  0.442847503 0.5605701 0.8611362 0.4217062 0.58199753 0.43214760
## 1258  0.442847503 0.5605701 0.8611362 0.4217062 0.58199753 0.43214760
## 79    0.439338731 0.5552941 0.8606335 0.4159276 0.57914110 0.42747293
## 433   0.439338731 0.5552941 0.8606335 0.4159276 0.57914110 0.42747293
## 853   0.439338731 0.5552941 0.8606335 0.4159276 0.57914110 0.42747293
## 1401  0.439338731 0.5552941 0.8606335 0.4159276 0.57914110 0.42747293
## 556   0.442712551 0.5547786 0.8619437 0.4167222 0.58119658 0.42952086
## 951   0.442712551 0.5547786 0.8619437 0.4167222 0.58119658 0.42952086
## 1126  0.442712551 0.5547786 0.8619437 0.4167222 0.58119658 0.42952086
## 1289  0.442712551 0.5547786 0.8619437 0.4167222 0.58119658 0.42952086
## 185   0.442645074 0.5519630 0.8623519 0.4143149 0.58080194 0.42824579
## 359   0.442645074 0.5519630 0.8623519 0.4143149 0.58080194 0.42824579
## 629   0.442645074 0.5519630 0.8623519 0.4143149 0.58080194 0.42824579
## 669   0.442645074 0.5519630 0.8623519 0.4143149 0.58080194 0.42824579
## 506   0.443454791 0.5504587 0.8628885 0.4133472 0.58111380 0.42813642
## 569   0.443454791 0.5504587 0.8628885 0.4133472 0.58111380 0.42813642
## 895   0.443454791 0.5504587 0.8628885 0.4133472 0.58111380 0.42813642
## 63    0.440823212 0.5466970 0.8625115 0.4092085 0.57901086 0.42472180
## 280   0.440823212 0.5466970 0.8625115 0.4092085 0.57901086 0.42472180
## 779   0.440823212 0.5466970 0.8625115 0.4092085 0.57901086 0.42472180
## 712   0.439068826 0.5442177 0.8622590 0.4064766 0.57761733 0.42245854
## 740   0.439068826 0.5442177 0.8622590 0.4064766 0.57761733 0.42245854
## 709   0.439001350 0.5415730 0.8626728 0.4042458 0.57724551 0.42126532
## 803   0.439001350 0.5415730 0.8626728 0.4042458 0.57724551 0.42126532
## 1329  0.439001350 0.5415730 0.8626728 0.4042458 0.57724551 0.42126532
## 1347  0.439001350 0.5415730 0.8626728 0.4042458 0.57724551 0.42126532
## 595   0.446693657 0.5446429 0.8650647 0.4097076 0.58233890 0.42780108
## 954   0.446693657 0.5446429 0.8650647 0.4097076 0.58233890 0.42780108
## 1383  0.446693657 0.5446429 0.8650647 0.4097076 0.58233890 0.42780108
## 349   0.444939271 0.5422222 0.8648148 0.4070370 0.58095238 0.42556640
## 1024  0.444939271 0.5422222 0.8648148 0.4070370 0.58095238 0.42556640
## 830   0.446626181 0.5420354 0.8654917 0.4075270 0.58194774 0.42662894
## 1267  0.446626181 0.5420354 0.8654917 0.4075270 0.58194774 0.42662894
## 500   0.444871795 0.5396476 0.8652416 0.4048892 0.58056872 0.42440993
## 1348  0.444871795 0.5396476 0.8652416 0.4048892 0.58056872 0.42440993
## 910   0.442240216 0.5361050 0.8648649 0.4009699 0.57851240 0.42109977
## 1268  0.442240216 0.5361050 0.8648649 0.4009699 0.57851240 0.42109977
## 1453  0.442240216 0.5361050 0.8648649 0.4009699 0.57851240 0.42109977
## 309   0.444804318 0.5371179 0.8656716 0.4027895 0.58018868 0.42327595
## 397   0.443049933 0.5347826 0.8654206 0.4002032 0.57882353 0.42108192
## 710   0.443049933 0.5347826 0.8654206 0.4002032 0.57882353 0.42108192
## 40    0.447300945 0.5356371 0.8669166 0.4025537 0.58147714 0.42433792
## 228   0.447300945 0.5356371 0.8669166 0.4025537 0.58147714 0.42433792
## 968   0.447300945 0.5356371 0.8669166 0.4025537 0.58147714 0.42433792
## 114   0.449797571 0.5341880 0.8681733 0.4023613 0.58275058 0.42541877
## 268   0.449797571 0.5341880 0.8681733 0.4023613 0.58275058 0.42541877
## 679   0.449797571 0.5341880 0.8681733 0.4023613 0.58275058 0.42541877
## 1027  0.449797571 0.5341880 0.8681733 0.4023613 0.58275058 0.42541877
## 1447  0.449797571 0.5341880 0.8681733 0.4023613 0.58275058 0.42541877
## 89    0.448920378 0.5330490 0.8680490 0.4010981 0.58207218 0.42433606
## 201   0.445411606 0.5285412 0.8675497 0.3960909 0.57937428 0.42002795
## 453   0.445411606 0.5285412 0.8675497 0.3960909 0.57937428 0.42002795
## 1153  0.445411606 0.5285412 0.8675497 0.3960909 0.57937428 0.42002795
## 1171  0.445411606 0.5285412 0.8675497 0.3960909 0.57937428 0.42002795
## 13    0.449662618 0.5294118 0.8690702 0.3984820 0.58198614 0.42329948
## 319   0.449662618 0.5294118 0.8690702 0.3984820 0.58198614 0.42329948
## 904   0.449662618 0.5294118 0.8690702 0.3984820 0.58198614 0.42329948
## 200   0.451349528 0.5292887 0.8697719 0.3990606 0.58294931 0.42440052
## 585   0.451349528 0.5292887 0.8697719 0.3990606 0.58294931 0.42440052
## 44    0.452968961 0.5268595 0.8709369 0.3977964 0.58352403 0.42448725
## 238   0.452968961 0.5268595 0.8709369 0.3977964 0.58352403 0.42448725
## 279   0.452968961 0.5268595 0.8709369 0.3977964 0.58352403 0.42448725
## 321   0.452968961 0.5268595 0.8709369 0.3977964 0.58352403 0.42448725
## 408   0.452968961 0.5268595 0.8709369 0.3977964 0.58352403 0.42448725
## 1407  0.452968961 0.5268595 0.8709369 0.3977964 0.58352403 0.42448725
## 435   0.446828610 0.5193483 0.8700674 0.3894156 0.57888763 0.41713553
## 436   0.446828610 0.5193483 0.8700674 0.3894156 0.57888763 0.41713553
## 706   0.446828610 0.5193483 0.8700674 0.3894156 0.57888763 0.41713553
## 778   0.446828610 0.5193483 0.8700674 0.3894156 0.57888763 0.41713553
## 1139  0.446828610 0.5193483 0.8700674 0.3894156 0.57888763 0.41713553
## 1182  0.446828610 0.5193483 0.8700674 0.3894156 0.57888763 0.41713553
## 1487  0.446828610 0.5193483 0.8700674 0.3894156 0.57888763 0.41713553
## 936   0.445074224 0.5172414 0.8698168 0.3870582 0.57757644 0.41505374
## 1193  0.445074224 0.5172414 0.8698168 0.3870582 0.57757644 0.41505374
## 272   0.442442645 0.5141129 0.8694391 0.3835520 0.57562077 0.41194630
## 1128  0.442442645 0.5141129 0.8694391 0.3835520 0.57562077 0.41194630
## 1232  0.442442645 0.5141129 0.8694391 0.3835520 0.57562077 0.41194630
## 156   0.444129555 0.5140562 0.8701550 0.3842113 0.57657658 0.41308544
## 1049  0.444129555 0.5140562 0.8701550 0.3842113 0.57657658 0.41308544
## 1418  0.443252362 0.5130261 0.8700291 0.3830552 0.57592801 0.41205594
## 965   0.440620783 0.5099602 0.8696498 0.3796100 0.57399103 0.40897927
## 1106  0.440620783 0.5099602 0.8696498 0.3796100 0.57399103 0.40897927
## 1486  0.440620783 0.5099602 0.8696498 0.3796100 0.57399103 0.40897927
## 564   0.442307692 0.5099206 0.8703704 0.3802910 0.57494407 0.41012881
## 1336  0.442307692 0.5099206 0.8703704 0.3802910 0.57494407 0.41012881
## 340   0.443117409 0.5088757 0.8709677 0.3798435 0.57525084 0.41026243
## 707   0.443117409 0.5088757 0.8709677 0.3798435 0.57525084 0.41026243
## 1123  0.443117409 0.5088757 0.8709677 0.3798435 0.57525084 0.41026243
## 748   0.441363023 0.5068762 0.8707150 0.3775912 0.57397108 0.40823376
## 1192  0.441363023 0.5068762 0.8707150 0.3775912 0.57397108 0.40823376
## 106   0.441295547 0.5048733 0.8711898 0.3760631 0.57364341 0.40737570
## 208   0.441295547 0.5048733 0.8711898 0.3760631 0.57364341 0.40737570
## 271   0.441295547 0.5048733 0.8711898 0.3760631 0.57364341 0.40737570
## 420   0.441295547 0.5048733 0.8711898 0.3760631 0.57364341 0.40737570
## 105   0.439541161 0.5029126 0.8709360 0.3738486 0.57237569 0.40536630
## 514   0.439541161 0.5029126 0.8709360 0.3738486 0.57237569 0.40536630
## 745   0.440350877 0.5019305 0.8715415 0.3734720 0.57268722 0.40553511
## 1047  0.440350877 0.5019305 0.8715415 0.3734720 0.57268722 0.40553511
## 1265  0.440350877 0.5019305 0.8715415 0.3734720 0.57268722 0.40553511
## 521   0.442037787 0.5019231 0.8722772 0.3742003 0.57362637 0.40670711
## 1262  0.442037787 0.5019231 0.8722772 0.3742003 0.57362637 0.40670711
## 1098  0.443724696 0.5019157 0.8730159 0.3749316 0.57456140 0.40788038
## 1324  0.443724696 0.5019157 0.8730159 0.3749316 0.57456140 0.40788038
## 640   0.441093117 0.4990476 0.8726368 0.3716844 0.57267760 0.40490424
## 1087  0.441093117 0.4990476 0.8726368 0.3716844 0.57267760 0.40490424
## 1159  0.441093117 0.4990476 0.8726368 0.3716844 0.57267760 0.40490424
## 123   0.447031039 0.5000000 0.8750000 0.3750000 0.57608696 0.40943454
## 343   0.447031039 0.5000000 0.8750000 0.3750000 0.57608696 0.40943454
## 955   0.447031039 0.5000000 0.8750000 0.3750000 0.57608696 0.40943454
## 974   0.447031039 0.5000000 0.8750000 0.3750000 0.57608696 0.40943454
## 999   0.447031039 0.5000000 0.8750000 0.3750000 0.57608696 0.40943454
## 49    0.442645074 0.4953271 0.8743719 0.3696990 0.57297297 0.40453112
## 60    0.442645074 0.4953271 0.8743719 0.3696990 0.57297297 0.40453112
## 525   0.442645074 0.4953271 0.8743719 0.3696990 0.57297297 0.40453112
## 643   0.442645074 0.4953271 0.8743719 0.3696990 0.57297297 0.40453112
## 1520  0.442645074 0.4953271 0.8743719 0.3696990 0.57297297 0.40453112
## 708   0.441767881 0.4944030 0.8742455 0.3686485 0.57235421 0.40355551
## 535   0.440013495 0.4925651 0.8739919 0.3665570 0.57112069 0.40160929
## 690   0.440013495 0.4925651 0.8739919 0.3665570 0.57112069 0.40160929
## 358   0.438259109 0.4907407 0.8737374 0.3644781 0.56989247 0.39966968
## 508   0.438259109 0.4907407 0.8737374 0.3644781 0.56989247 0.39966968
## 393   0.443387314 0.4926199 0.8755061 0.3681260 0.57296137 0.40400792
## 1355  0.443387314 0.4926199 0.8755061 0.3681260 0.57296137 0.40400792
## 74    0.444197031 0.4917431 0.8761421 0.3678853 0.57326203 0.40424440
## 77    0.444197031 0.4917431 0.8761421 0.3678853 0.57326203 0.40424440
## 991   0.444197031 0.4917431 0.8761421 0.3678853 0.57326203 0.40424440
## 171   0.447570850 0.4918033 0.8776758 0.3694791 0.57507987 0.40665475
## 465   0.447570850 0.4918033 0.8776758 0.3694791 0.57507987 0.40665475
## 983   0.447570850 0.4918033 0.8776758 0.3694791 0.57507987 0.40665475
## 1245  0.447570850 0.4918033 0.8776758 0.3694791 0.57507987 0.40665475
## 445   0.446693657 0.4909091 0.8775510 0.3684601 0.57446809 0.40569545
## 55    0.444939271 0.4891304 0.8773006 0.3664310 0.57324841 0.40378158
## 275   0.444939271 0.4891304 0.8773006 0.3664310 0.57324841 0.40378158
## 470   0.444062078 0.4882459 0.8771750 0.3654210 0.57264051 0.40282700
## 620   0.439676113 0.4838710 0.8765432 0.3604142 0.56962025 0.39807726
## 1006  0.439676113 0.4838710 0.8765432 0.3604142 0.56962025 0.39807726
## 1086  0.439676113 0.4838710 0.8765432 0.3604142 0.56962025 0.39807726
## 1140  0.439676113 0.4838710 0.8765432 0.3604142 0.56962025 0.39807726
## 1501  0.439676113 0.4838710 0.8765432 0.3604142 0.56962025 0.39807726
## 85    0.443927126 0.4848485 0.8782250 0.3630735 0.57202944 0.40147000
## 798   0.443927126 0.4848485 0.8782250 0.3630735 0.57202944 0.40147000
## 1114  0.443927126 0.4848485 0.8782250 0.3630735 0.57202944 0.40147000
## 786   0.443049933 0.4839858 0.8780992 0.3620849 0.57142857 0.40052679
## 376   0.442982456 0.4823322 0.8786307 0.3609629 0.57112971 0.39987525
## 677   0.442982456 0.4823322 0.8786307 0.3609629 0.57112971 0.39987525
## 814   0.442982456 0.4823322 0.8786307 0.3609629 0.57112971 0.39987525
## 1246  0.442982456 0.4823322 0.8786307 0.3609629 0.57112971 0.39987525
## 51    0.441160594 0.4790210 0.8789144 0.3579354 0.56964657 0.39737512
## 542   0.441160594 0.4790210 0.8789144 0.3579354 0.56964657 0.39737512
## 742   0.441160594 0.4790210 0.8789144 0.3579354 0.56964657 0.39737512
## 884   0.441160594 0.4790210 0.8789144 0.3579354 0.56964657 0.39737512
## 1326  0.441160594 0.4790210 0.8789144 0.3579354 0.56964657 0.39737512
## 1338  0.441160594 0.4790210 0.8789144 0.3579354 0.56964657 0.39737512
## 98    0.440215924 0.4766031 0.8793284 0.3559316 0.56876939 0.39583676
## 184   0.440215924 0.4766031 0.8793284 0.3559316 0.56876939 0.39583676
## 214   0.440215924 0.4766031 0.8793284 0.3559316 0.56876939 0.39583676
## 926   0.440215924 0.4766031 0.8793284 0.3559316 0.56876939 0.39583676
## 1357  0.440215924 0.4766031 0.8793284 0.3559316 0.56876939 0.39583676
## 103   0.441835358 0.4751286 0.8806758 0.3558045 0.56937307 0.39649337
## 717   0.441835358 0.4751286 0.8806758 0.3558045 0.56937307 0.39649337
## 898   0.441835358 0.4751286 0.8806758 0.3558045 0.56937307 0.39649337
## 939   0.441835358 0.4751286 0.8806758 0.3558045 0.56937307 0.39649337
## 1210  0.441835358 0.4751286 0.8806758 0.3558045 0.56937307 0.39649337
## 1400  0.441835358 0.4751286 0.8806758 0.3558045 0.56937307 0.39649337
## 66    0.436572200 0.4702886 0.8799150 0.3502036 0.56588355 0.39101043
## 253   0.436572200 0.4702886 0.8799150 0.3502036 0.56588355 0.39101043
## 949   0.436572200 0.4702886 0.8799150 0.3502036 0.56588355 0.39101043
## 1354  0.436572200 0.4702886 0.8799150 0.3502036 0.56588355 0.39101043
## 1398  0.436572200 0.4702886 0.8799150 0.3502036 0.56588355 0.39101043
## 1415  0.436572200 0.4702886 0.8799150 0.3502036 0.56588355 0.39101043
## 237   0.438259109 0.4703892 0.8807242 0.3511133 0.56676860 0.39227366
## 567   0.438259109 0.4703892 0.8807242 0.3511133 0.56676860 0.39227366
## 22    0.432118758 0.4648829 0.8798283 0.3447113 0.56275304 0.38594845
## 204   0.432118758 0.4648829 0.8798283 0.3447113 0.56275304 0.38594845
## 292   0.432118758 0.4648829 0.8798283 0.3447113 0.56275304 0.38594845
## 455   0.432118758 0.4648829 0.8798283 0.3447113 0.56275304 0.38594845
## 641   0.432118758 0.4648829 0.8798283 0.3447113 0.56275304 0.38594845
## 849   0.432118758 0.4648829 0.8798283 0.3447113 0.56275304 0.38594845
## 1380  0.432118758 0.4648829 0.8798283 0.3447113 0.56275304 0.38594845
## 313   0.435492578 0.4651163 0.8814655 0.3465818 0.56451613 0.38850199
## 964   0.435492578 0.4651163 0.8814655 0.3465818 0.56451613 0.38850199
## 1470  0.435492578 0.4651163 0.8814655 0.3465818 0.56451613 0.38850199
## 1512  0.435492578 0.4651163 0.8814655 0.3465818 0.56451613 0.38850199
## 223   0.435425101 0.4636964 0.8820346 0.3457310 0.56425703 0.38799479
## 246   0.435425101 0.4636964 0.8820346 0.3457310 0.56425703 0.38799479
## 1259  0.435425101 0.4636964 0.8820346 0.3457310 0.56425703 0.38799479
## 1260  0.435425101 0.4636964 0.8820346 0.3457310 0.56425703 0.38799479
## 758   0.434547908 0.4629325 0.8819068 0.3448393 0.56369107 0.38710359
## 873   0.438798920 0.4639344 0.8836957 0.3476301 0.56600000 0.39056332
## 1250  0.438798920 0.4639344 0.8836957 0.3476301 0.56600000 0.39056332
## 1465  0.438798920 0.4639344 0.8836957 0.3476301 0.56600000 0.39056332
## 38    0.438663968 0.4611650 0.8848684 0.3460335 0.56547619 0.38960546
## 94    0.438663968 0.4611650 0.8848684 0.3460335 0.56547619 0.38960546
## 323   0.438663968 0.4611650 0.8848684 0.3460335 0.56547619 0.38960546
## 494   0.438663968 0.4611650 0.8848684 0.3460335 0.56547619 0.38960546
## 913   0.438663968 0.4611650 0.8848684 0.3460335 0.56547619 0.38960546
## 916   0.438663968 0.4611650 0.8848684 0.3460335 0.56547619 0.38960546
## 1003  0.438663968 0.4611650 0.8848684 0.3460335 0.56547619 0.38960546
## 1459  0.438663968 0.4611650 0.8848684 0.3460335 0.56547619 0.38960546
## 716   0.438596491 0.4598071 0.8854626 0.3452696 0.56521739 0.38914528
## 902   0.438596491 0.4598071 0.8854626 0.3452696 0.56521739 0.38914528
## 963   0.438596491 0.4598071 0.8854626 0.3452696 0.56521739 0.38914528
## 1269  0.438596491 0.4598071 0.8854626 0.3452696 0.56521739 0.38914528
## 101   0.436774629 0.4570064 0.8858093 0.3428157 0.56385069 0.38695373
## 667   0.436774629 0.4570064 0.8858093 0.3428157 0.56385069 0.38695373
## 1007  0.436774629 0.4570064 0.8858093 0.3428157 0.56385069 0.38695373
## 1021  0.436774629 0.4570064 0.8858093 0.3428157 0.56385069 0.38695373
## 1107  0.436774629 0.4570064 0.8858093 0.3428157 0.56385069 0.38695373
## 1199  0.436774629 0.4570064 0.8858093 0.3428157 0.56385069 0.38695373
## 998   0.432388664 0.4533965 0.8851728 0.3385693 0.56109482 0.38261408
## 1111  0.432388664 0.4533965 0.8851728 0.3385693 0.56109482 0.38261408
## 1220  0.432388664 0.4533965 0.8851728 0.3385693 0.56109482 0.38261408
## 1303  0.432388664 0.4533965 0.8851728 0.3385693 0.56109482 0.38261408
## 1471  0.432388664 0.4533965 0.8851728 0.3385693 0.56109482 0.38261408
## 355   0.434075574 0.4535433 0.8860335 0.3395768 0.56195122 0.38392969
## 829   0.434075574 0.4535433 0.8860335 0.3395768 0.56195122 0.38392969
## 241   0.432253711 0.4508580 0.8863892 0.3372472 0.56062076 0.38180672
## 747   0.432253711 0.4508580 0.8863892 0.3372472 0.56062076 0.38180672
## 914   0.432253711 0.4508580 0.8863892 0.3372472 0.56062076 0.38180672
## 1264  0.432253711 0.4508580 0.8863892 0.3372472 0.56062076 0.38180672
## 1293  0.432253711 0.4508580 0.8863892 0.3372472 0.56062076 0.38180672
## 1297  0.432253711 0.4508580 0.8863892 0.3372472 0.56062076 0.38180672
## 274   0.431376518 0.4501558 0.8862613 0.3364170 0.56007752 0.38094935
## 534   0.428744939 0.4480620 0.8858757 0.3339377 0.55845411 0.37838355
## 612   0.428744939 0.4480620 0.8858757 0.3339377 0.55845411 0.37838355
## 1163  0.428744939 0.4480620 0.8858757 0.3339377 0.55845411 0.37838355
## 211   0.428677463 0.4468413 0.8864926 0.3333339 0.55822907 0.37801156
## 956   0.428677463 0.4468413 0.8864926 0.3333339 0.55822907 0.37801156
## 962   0.428677463 0.4468413 0.8864926 0.3333339 0.55822907 0.37801156
## 1022  0.428677463 0.4468413 0.8864926 0.3333339 0.55822907 0.37801156
## 374   0.430296896 0.4458015 0.8880000 0.3338015 0.55885167 0.37899045
## 456   0.430296896 0.4458015 0.8880000 0.3338015 0.55885167 0.37899045
## 546   0.430296896 0.4458015 0.8880000 0.3338015 0.55885167 0.37899045
## 597   0.430296896 0.4458015 0.8880000 0.3338015 0.55885167 0.37899045
## 711   0.430296896 0.4458015 0.8880000 0.3338015 0.55885167 0.37899045
## 1144  0.430296896 0.4458015 0.8880000 0.3338015 0.55885167 0.37899045
## 650   0.427665317 0.4437690 0.8876147 0.3313837 0.55725191 0.37645890
## 860   0.427665317 0.4437690 0.8876147 0.3313837 0.55725191 0.37645890
## 1343  0.427665317 0.4437690 0.8876147 0.3313837 0.55725191 0.37645890
## 235   0.427597841 0.4425982 0.8882488 0.3308470 0.55703422 0.37612429
## 444   0.427597841 0.4425982 0.8882488 0.3308470 0.55703422 0.37612429
## 977   0.427597841 0.4425982 0.8882488 0.3308470 0.55703422 0.37612429
## 1127  0.427597841 0.4425982 0.8882488 0.3308470 0.55703422 0.37612429
## 2     0.425775978 0.4401198 0.8886311 0.3287509 0.55576560 0.37413128
## 12    0.425775978 0.4401198 0.8886311 0.3287509 0.55576560 0.37413128
## 370   0.425775978 0.4401198 0.8886311 0.3287509 0.55576560 0.37413128
## 698   0.425775978 0.4401198 0.8886311 0.3287509 0.55576560 0.37413128
## 1363  0.425775978 0.4401198 0.8886311 0.3287509 0.55576560 0.37413128
## 1448  0.425775978 0.4401198 0.8886311 0.3287509 0.55576560 0.37413128
## 19    0.423144399 0.4381520 0.8882421 0.3263942 0.55419416 0.37163404
## 1223  0.423144399 0.4381520 0.8882421 0.3263942 0.55419416 0.37163404
## 1437  0.423144399 0.4381520 0.8882421 0.3263942 0.55419416 0.37163404
## 87    0.423954116 0.4376855 0.8890187 0.3267042 0.55451128 0.37216605
## 196   0.423954116 0.4376855 0.8890187 0.3267042 0.55451128 0.37216605
## 659   0.423954116 0.4376855 0.8890187 0.3267042 0.55451128 0.37216605
## 282   0.419568151 0.4344624 0.8883666 0.3228291 0.55191768 0.36803369
## 475   0.419568151 0.4344624 0.8883666 0.3228291 0.55191768 0.36803369
## 864   0.419568151 0.4344624 0.8883666 0.3228291 0.55191768 0.36803369
## 1077  0.419568151 0.4344624 0.8883666 0.3228291 0.55191768 0.36803369
## 1243  0.419568151 0.4344624 0.8883666 0.3228291 0.55191768 0.36803369
## 17    0.414304993 0.4306569 0.8875740 0.3182309 0.54883721 0.36310419
## 95    0.414304993 0.4306569 0.8875740 0.3182309 0.54883721 0.36310419
## 644   0.414304993 0.4306569 0.8875740 0.3182309 0.54883721 0.36310419
## 928   0.414304993 0.4306569 0.8875740 0.3182309 0.54883721 0.36310419
## 1051  0.414304993 0.4306569 0.8875740 0.3182309 0.54883721 0.36310419
## 1085  0.414304993 0.4306569 0.8875740 0.3182309 0.54883721 0.36310419
## 601   0.411673414 0.4287791 0.8871734 0.3159525 0.54730983 0.36065112
## 653   0.411673414 0.4287791 0.8871734 0.3159525 0.54730983 0.36065112
## 1229  0.411673414 0.4287791 0.8871734 0.3159525 0.54730983 0.36065112
## 23    0.419298246 0.4302158 0.8910180 0.3212338 0.55115207 0.36700513
## 102   0.419298246 0.4302158 0.8910180 0.3212338 0.55115207 0.36700513
## 127   0.419298246 0.4302158 0.8910180 0.3212338 0.55115207 0.36700513
## 392   0.419298246 0.4302158 0.8910180 0.3212338 0.55115207 0.36700513
## 485   0.419298246 0.4302158 0.8910180 0.3212338 0.55115207 0.36700513
## 1174  0.419298246 0.4302158 0.8910180 0.3212338 0.55115207 0.36700513
## 1330  0.419298246 0.4302158 0.8910180 0.3212338 0.55115207 0.36700513
## 626   0.417543860 0.4289813 0.8907563 0.3197377 0.55013799 0.36538267
## 1094  0.417543860 0.4289813 0.8907563 0.3197377 0.55013799 0.36538267
## 210   0.414912281 0.4271429 0.8903614 0.3175043 0.54862385 0.36295514
## 428   0.414912281 0.4271429 0.8903614 0.3175043 0.54862385 0.36295514
## 1097  0.414912281 0.4271429 0.8903614 0.3175043 0.54862385 0.36295514
## 220   0.413967611 0.4255319 0.8909091 0.3164410 0.54794521 0.36193415
## 817   0.413967611 0.4255319 0.8909091 0.3164410 0.54794521 0.36193415
## 971   0.413967611 0.4255319 0.8909091 0.3164410 0.54794521 0.36193415
## 1403  0.413967611 0.4255319 0.8909091 0.3164410 0.54794521 0.36193415
## 1473  0.413967611 0.4255319 0.8909091 0.3164410 0.54794521 0.36193415
## 593   0.415654521 0.4257426 0.8918591 0.3176016 0.54876937 0.36333532
## 1149  0.415654521 0.4257426 0.8918591 0.3176016 0.54876937 0.36333532
## 457   0.417341430 0.4259520 0.8928136 0.3187657 0.54959054 0.36473844
## 582   0.417341430 0.4259520 0.8928136 0.3187657 0.54959054 0.36473844
## 270   0.415587045 0.4247539 0.8925519 0.3173058 0.54859219 0.36313656
## 352   0.415587045 0.4247539 0.8925519 0.3173058 0.54859219 0.36313656
## 10    0.420647773 0.4253835 0.8954490 0.3208325 0.55103884 0.36736559
## 35    0.420647773 0.4253835 0.8954490 0.3208325 0.55103884 0.36736559
## 1046  0.420647773 0.4253835 0.8954490 0.3208325 0.55103884 0.36736559
## 1074  0.420647773 0.4253835 0.8954490 0.3208325 0.55103884 0.36736559
## 1325  0.420647773 0.4253835 0.8954490 0.3208325 0.55103884 0.36736559
## 1387  0.420647773 0.4253835 0.8954490 0.3208325 0.55103884 0.36736559
## 269   0.418893387 0.4242003 0.8951911 0.3193914 0.55004509 0.36577445
## 327   0.418893387 0.4242003 0.8951911 0.3193914 0.55004509 0.36577445
## 759   0.418825911 0.4232365 0.8959108 0.3191473 0.54986523 0.36560519
## 882   0.418825911 0.4232365 0.8959108 0.3191473 0.54986523 0.36560519
## 933   0.418825911 0.4232365 0.8959108 0.3191473 0.54986523 0.36560519
## 1168  0.418825911 0.4232365 0.8959108 0.3191473 0.54986523 0.36560519
## 1474  0.417948718 0.4226519 0.8957816 0.3184336 0.54937163 0.36481352
## 249   0.413495277 0.4188267 0.8958595 0.3146862 0.54674978 0.36072325
## 330   0.413495277 0.4188267 0.8958595 0.3146862 0.54674978 0.36072325
## 495   0.413495277 0.4188267 0.8958595 0.3146862 0.54674978 0.36072325
## 517   0.413495277 0.4188267 0.8958595 0.3146862 0.54674978 0.36072325
## 613   0.413495277 0.4188267 0.8958595 0.3146862 0.54674978 0.36072325
## 680   0.413495277 0.4188267 0.8958595 0.3146862 0.54674978 0.36072325
## 1179  0.413495277 0.4188267 0.8958595 0.3146862 0.54674978 0.36072325
## 1215  0.413495277 0.4188267 0.8958595 0.3146862 0.54674978 0.36072325
## 1530  0.413495277 0.4188267 0.8958595 0.3146862 0.54674978 0.36072325
## 179   0.413427800 0.4179104 0.8965952 0.3145057 0.54658385 0.36059032
## 834   0.413427800 0.4179104 0.8965952 0.3145057 0.54658385 0.36059032
## 1071  0.413427800 0.4179104 0.8965952 0.3145057 0.54658385 0.36059032
## 1442  0.413427800 0.4179104 0.8965952 0.3145057 0.54658385 0.36059032
## 18    0.410728745 0.4153226 0.8969466 0.3122691 0.54497354 0.35813114
## 276   0.410728745 0.4153226 0.8969466 0.3122691 0.54497354 0.35813114
## 868   0.410728745 0.4153226 0.8969466 0.3122691 0.54497354 0.35813114
## 1009  0.410728745 0.4153226 0.8969466 0.3122691 0.54497354 0.35813114
## 1242  0.410728745 0.4153226 0.8969466 0.3122691 0.54497354 0.35813114
## 1323  0.410728745 0.4153226 0.8969466 0.3122691 0.54497354 0.35813114
## 1499  0.410728745 0.4153226 0.8969466 0.3122691 0.54497354 0.35813114
## 322   0.409784076 0.4138852 0.8975672 0.3114524 0.54433714 0.35725094
## 714   0.409784076 0.4138852 0.8975672 0.3114524 0.54433714 0.35725094
## 923   0.409784076 0.4138852 0.8975672 0.3114524 0.54433714 0.35725094
## 1248  0.409784076 0.4138852 0.8975672 0.3114524 0.54433714 0.35725094
## 1340  0.409784076 0.4138852 0.8975672 0.3114524 0.54433714 0.35725094
## 222   0.412280702 0.4137931 0.8994845 0.3132776 0.54545455 0.35938604
## 233   0.412280702 0.4137931 0.8994845 0.3132776 0.54545455 0.35938604
## 844   0.412280702 0.4137931 0.8994845 0.3132776 0.54545455 0.35938604
## 1284  0.412280702 0.4137931 0.8994845 0.3132776 0.54545455 0.35938604
## 1395  0.412280702 0.4137931 0.8994845 0.3132776 0.54545455 0.35938604
## 190   0.407017544 0.4105263 0.8987013 0.3092276 0.54260870 0.35476903
## 533   0.407017544 0.4105263 0.8987013 0.3092276 0.54260870 0.35476903
## 1000  0.407017544 0.4105263 0.8987013 0.3092276 0.54260870 0.35476903
## 1063  0.407017544 0.4105263 0.8987013 0.3092276 0.54260870 0.35476903
## 1064  0.407017544 0.4105263 0.8987013 0.3092276 0.54260870 0.35476903
## 1129  0.407017544 0.4105263 0.8987013 0.3092276 0.54260870 0.35476903
## 431   0.404385965 0.4089122 0.8983051 0.3072173 0.54119688 0.35246894
## 850   0.404385965 0.4089122 0.8983051 0.3072173 0.54119688 0.35246894
## 1137  0.404385965 0.4089122 0.8983051 0.3072173 0.54119688 0.35246894
## 263   0.400000000 0.4062500 0.8976378 0.3038878 0.53886010 0.34864756
## 619   0.400000000 0.4062500 0.8976378 0.3038878 0.53886010 0.34864756
## 790   0.400000000 0.4062500 0.8976378 0.3038878 0.53886010 0.34864756
## 915   0.400000000 0.4062500 0.8976378 0.3038878 0.53886010 0.34864756
## 922   0.400000000 0.4062500 0.8976378 0.3038878 0.53886010 0.34864756
## 148   0.406815115 0.4080311 0.9010554 0.3090865 0.54216867 0.35459986
## 418   0.406815115 0.4080311 0.9010554 0.3090865 0.54216867 0.35459986
## 544   0.406815115 0.4080311 0.9010554 0.3090865 0.54216867 0.35459986
## 1099  0.406815115 0.4080311 0.9010554 0.3090865 0.54216867 0.35459986
## 177   0.404183536 0.4064516 0.9006623 0.3071139 0.54077253 0.35232140
## 182   0.404183536 0.4064516 0.9006623 0.3071139 0.54077253 0.35232140
## 943   0.404183536 0.4064516 0.9006623 0.3071139 0.54077253 0.35232140
## 194   0.403238866 0.4051282 0.9013333 0.3064615 0.54017094 0.35153549
## 224   0.403238866 0.4051282 0.9013333 0.3064615 0.54017094 0.35153549
## 386   0.403238866 0.4051282 0.9013333 0.3064615 0.54017094 0.35153549
## 526   0.403238866 0.4051282 0.9013333 0.3064615 0.54017094 0.35153549
## 1434  0.403238866 0.4051282 0.9013333 0.3064615 0.54017094 0.35153549
## 381   0.407422402 0.4053367 0.9044415 0.3097782 0.54205607 0.35526127
## 448   0.407422402 0.4053367 0.9044415 0.3097782 0.54205607 0.35526127
## 635   0.407422402 0.4053367 0.9044415 0.3097782 0.54205607 0.35526127
## 660   0.407422402 0.4053367 0.9044415 0.3097782 0.54205607 0.35526127
## 866   0.407422402 0.4053367 0.9044415 0.3097782 0.54205607 0.35526127
## 906   0.407422402 0.4053367 0.9044415 0.3097782 0.54205607 0.35526127
## 1041  0.407422402 0.4053367 0.9044415 0.3097782 0.54205607 0.35526127
## 56    0.409919028 0.4053030 0.9065041 0.3118071 0.54314721 0.35751316
## 656   0.409919028 0.4053030 0.9065041 0.3118071 0.54314721 0.35751316
## 1160  0.409919028 0.4053030 0.9065041 0.3118071 0.54314721 0.35751316
## 1345  0.409919028 0.4053030 0.9065041 0.3118071 0.54314721 0.35751316
## 1461  0.409919028 0.4053030 0.9065041 0.3118071 0.54314721 0.35751316
## 1216  0.410728745 0.4050314 0.9074830 0.3125144 0.54345992 0.35827177
## 1304  0.410728745 0.4050314 0.9074830 0.3125144 0.54345992 0.35827177
## 1410  0.410728745 0.4050314 0.9074830 0.3125144 0.54345992 0.35827177
## 150   0.415856950 0.4065245 0.9099591 0.3164835 0.54591407 0.36278352
## 1029  0.415856950 0.4065245 0.9099591 0.3164835 0.54591407 0.36278352
## 662   0.416666667 0.4062500 0.9109589 0.3172089 0.54621849 0.36355244
## 763   0.416666667 0.4062500 0.9109589 0.3172089 0.54621849 0.36355244
## 1426  0.416666667 0.4062500 0.9109589 0.3172089 0.54621849 0.36355244
## 50    0.413157895 0.4042289 0.9104683 0.3146972 0.54438861 0.36058234
## 950   0.413157895 0.4042289 0.9104683 0.3146972 0.54438861 0.36058234
## 988   0.413157895 0.4042289 0.9104683 0.3146972 0.54438861 0.36058234
## 1475  0.413157895 0.4042289 0.9104683 0.3146972 0.54438861 0.36058234
## 333   0.416464238 0.4039409 0.9136490 0.3175899 0.54575707 0.36368233
## 565   0.416464238 0.4039409 0.9136490 0.3175899 0.54575707 0.36368233
## 741   0.416464238 0.4039409 0.9136490 0.3175899 0.54575707 0.36368233
## 937   0.416464238 0.4039409 0.9136490 0.3175899 0.54575707 0.36368233
## 952   0.416464238 0.4039409 0.9136490 0.3175899 0.54575707 0.36368233
## 1125  0.416464238 0.4039409 0.9136490 0.3175899 0.54575707 0.36368233
## 1217  0.416464238 0.4039409 0.9136490 0.3175899 0.54575707 0.36368233
## 1286  0.416464238 0.4039409 0.9136490 0.3175899 0.54575707 0.36368233
## 524   0.412955466 0.4019608 0.9131653 0.3151261 0.54394693 0.36073955
## 925   0.412955466 0.4019608 0.9131653 0.3151261 0.54394693 0.36073955
## 1369  0.412955466 0.4019608 0.9131653 0.3151261 0.54394693 0.36073955
## 1435  0.412955466 0.4019608 0.9131653 0.3151261 0.54394693 0.36073955
## 384   0.408569501 0.3995128 0.9125529 0.3120657 0.54170107 0.35707215
## 548   0.408569501 0.3995128 0.9125529 0.3120657 0.54170107 0.35707215
## 1084  0.408569501 0.3995128 0.9125529 0.3120657 0.54170107 0.35707215
## 1157  0.408569501 0.3995128 0.9125529 0.3120657 0.54170107 0.35707215
## 1226  0.408569501 0.3995128 0.9125529 0.3120657 0.54170107 0.35707215
## 1295  0.407692308 0.3990268 0.9124294 0.3114561 0.54125413 0.35634011
## 278   0.402429150 0.3961353 0.9116809 0.3078162 0.53858785 0.35195767
## 843   0.402429150 0.3961353 0.9116809 0.3078162 0.53858785 0.35195767
## 942   0.402429150 0.3961353 0.9116809 0.3078162 0.53858785 0.35195767
## 992   0.402429150 0.3961353 0.9116809 0.3078162 0.53858785 0.35195767
## 1093  0.402429150 0.3961353 0.9116809 0.3078162 0.53858785 0.35195767
## 1277  0.402429150 0.3961353 0.9116809 0.3078162 0.53858785 0.35195767
## 84    0.398852901 0.3935407 0.9121037 0.3056444 0.53670473 0.34915206
## 432   0.398852901 0.3935407 0.9121037 0.3056444 0.53670473 0.34915206
## 646   0.398852901 0.3935407 0.9121037 0.3056444 0.53670473 0.34915206
## 978   0.398852901 0.3935407 0.9121037 0.3056444 0.53670473 0.34915206
## 1035  0.398852901 0.3935407 0.9121037 0.3056444 0.53670473 0.34915206
## 1142  0.398852901 0.3935407 0.9121037 0.3056444 0.53670473 0.34915206
## 1164  0.398852901 0.3935407 0.9121037 0.3056444 0.53670473 0.34915206
## 1180  0.398852901 0.3935407 0.9121037 0.3056444 0.53670473 0.34915206
## 43    0.404790823 0.3947681 0.9158200 0.3105882 0.53939886 0.35457473
## 317   0.404790823 0.3947681 0.9158200 0.3105882 0.53939886 0.35457473
## 342   0.404790823 0.3947681 0.9158200 0.3105882 0.53939886 0.35457473
## 1156  0.404790823 0.3947681 0.9158200 0.3105882 0.53939886 0.35457473
## 1214  0.404790823 0.3947681 0.9158200 0.3105882 0.53939886 0.35457473
## 126   0.407287449 0.3947991 0.9181287 0.3129277 0.54045307 0.35700354
## 265   0.407287449 0.3947991 0.9181287 0.3129277 0.54045307 0.35700354
## 520   0.407287449 0.3947991 0.9181287 0.3129277 0.54045307 0.35700354
## 584   0.407287449 0.3947991 0.9181287 0.3129277 0.54045307 0.35700354
## 1528  0.407287449 0.3947991 0.9181287 0.3129277 0.54045307 0.35700354
## 285   0.408097166 0.3945819 0.9192364 0.3138183 0.54075868 0.35786639
## 1181  0.408097166 0.3945819 0.9192364 0.3138183 0.54075868 0.35786639
## 1288  0.408097166 0.3945819 0.9192364 0.3138183 0.54075868 0.35786639
## 124   0.410593792 0.3946136 0.9215976 0.3162112 0.54180064 0.36032536
## 202   0.410593792 0.3946136 0.9215976 0.3162112 0.54180064 0.36032536
## 581   0.410593792 0.3946136 0.9215976 0.3162112 0.54180064 0.36032536
## 825   0.410593792 0.3946136 0.9215976 0.3162112 0.54180064 0.36032536
## 1349  0.410593792 0.3946136 0.9215976 0.3162112 0.54180064 0.36032536
## 306   0.407894737 0.3925668 0.9222720 0.3148388 0.54036771 0.35835890
## 346   0.407894737 0.3925668 0.9222720 0.3148388 0.54036771 0.35835890
## 377   0.407894737 0.3925668 0.9222720 0.3148388 0.54036771 0.35835890
## 464   0.407894737 0.3925668 0.9222720 0.3148388 0.54036771 0.35835890
## 503   0.407894737 0.3925668 0.9222720 0.3148388 0.54036771 0.35835890
## 948   0.407894737 0.3925668 0.9222720 0.3148388 0.54036771 0.35835890
## 1368  0.407894737 0.3925668 0.9222720 0.3148388 0.54036771 0.35835890
## 331   0.407759784 0.3912543 0.9243570 0.3156114 0.54011120 0.35873892
## 410   0.407759784 0.3912543 0.9243570 0.3156114 0.54011120 0.35873892
## 538   0.407759784 0.3912543 0.9243570 0.3156114 0.54011120 0.35873892
## 572   0.407759784 0.3912543 0.9243570 0.3156114 0.54011120 0.35873892
## 1118  0.407759784 0.3912543 0.9243570 0.3156114 0.54011120 0.35873892
## 1167  0.407759784 0.3912543 0.9243570 0.3156114 0.54011120 0.35873892
## 1204  0.407759784 0.3912543 0.9243570 0.3156114 0.54011120 0.35873892
## 1482  0.407759784 0.3912543 0.9243570 0.3156114 0.54011120 0.35873892
## 1431  0.406882591 0.3908046 0.9242424 0.3150470 0.53968254 0.35803233
## 76    0.407624831 0.3899658 0.9264931 0.3164589 0.53985793 0.35916084
## 261   0.407624831 0.3899658 0.9264931 0.3164589 0.53985793 0.35916084
## 308   0.407624831 0.3899658 0.9264931 0.3164589 0.53985793 0.35916084
## 811   0.407624831 0.3899658 0.9264931 0.3164589 0.53985793 0.35916084
## 1275  0.407624831 0.3899658 0.9264931 0.3164589 0.53985793 0.35916084
## 1408  0.407624831 0.3899658 0.9264931 0.3164589 0.53985793 0.35916084
## 1493  0.407624831 0.3899658 0.9264931 0.3164589 0.53985793 0.35916084
## 491   0.410998650 0.3904654 0.9291217 0.3195871 0.54130606 0.36242223
## 589   0.410998650 0.3904654 0.9291217 0.3195871 0.54130606 0.36242223
## 781   0.410998650 0.3904654 0.9291217 0.3195871 0.54130606 0.36242223
## 908   0.410998650 0.3904654 0.9291217 0.3195871 0.54130606 0.36242223
## 486   0.415249663 0.3914027 0.9318885 0.3232913 0.54317111 0.36639676
## 799   0.415249663 0.3914027 0.9318885 0.3232913 0.54317111 0.36639676
## 1507  0.415249663 0.3914027 0.9318885 0.3232913 0.54317111 0.36639676
## 4     0.410796221 0.3885778 0.9324961 0.3210739 0.54091972 0.36317481
## 297   0.410796221 0.3885778 0.9324961 0.3210739 0.54091972 0.36317481
## 423   0.410796221 0.3885778 0.9324961 0.3210739 0.54091972 0.36317481
## 568   0.410796221 0.3885778 0.9324961 0.3210739 0.54091972 0.36317481
## 682   0.410796221 0.3885778 0.9324961 0.3210739 0.54091972 0.36317481
## 1102  0.410796221 0.3885778 0.9324961 0.3210739 0.54091972 0.36317481
## 1191  0.410796221 0.3885778 0.9324961 0.3210739 0.54091972 0.36317481
## 1270  0.410796221 0.3885778 0.9324961 0.3210739 0.54091972 0.36317481
## 1502  0.410796221 0.3885778 0.9324961 0.3210739 0.54091972 0.36317481
## 266   0.404655870 0.3855556 0.9317460 0.3173016 0.53798450 0.35832660
## 293   0.404655870 0.3855556 0.9317460 0.3173016 0.53798450 0.35832660
## 446   0.404655870 0.3855556 0.9317460 0.3173016 0.53798450 0.35832660
## 545   0.404655870 0.3855556 0.9317460 0.3173016 0.53798450 0.35832660
## 695   0.404655870 0.3855556 0.9317460 0.3173016 0.53798450 0.35832660
## 1237  0.404655870 0.3855556 0.9317460 0.3173016 0.53798450 0.35832660
## 1335  0.404655870 0.3855556 0.9317460 0.3173016 0.53798450 0.35832660
## 416   0.408029690 0.3860619 0.9345048 0.3205667 0.53941267 0.36166386
## 1183  0.408029690 0.3860619 0.9345048 0.3205667 0.53941267 0.36166386
## 1233  0.408029690 0.3860619 0.9345048 0.3205667 0.53941267 0.36166386
## 1320  0.408029690 0.3860619 0.9345048 0.3205667 0.53941267 0.36166386
## 863   0.407152497 0.3856354 0.9344000 0.3200354 0.53899614 0.36097534
## 481   0.409649123 0.3857143 0.9370968 0.3228111 0.54000000 0.36364717
## 791   0.409649123 0.3857143 0.9370968 0.3228111 0.54000000 0.36364717
## 1048  0.409649123 0.3857143 0.9370968 0.3228111 0.54000000 0.36364717
## 1054  0.409649123 0.3857143 0.9370968 0.3228111 0.54000000 0.36364717
## 1120  0.409649123 0.3857143 0.9370968 0.3228111 0.54000000 0.36364717
## 489   0.409581646 0.3851204 0.9383117 0.3234320 0.53987730 0.36396679
## 720   0.409581646 0.3851204 0.9383117 0.3234320 0.53987730 0.36396679
## 981   0.409581646 0.3851204 0.9383117 0.3234320 0.53987730 0.36396679
## 1425  0.409581646 0.3851204 0.9383117 0.3234320 0.53987730 0.36396679
## 80    0.408636977 0.3841132 0.9394435 0.3235567 0.53934301 0.36361688
## 178   0.408636977 0.3841132 0.9394435 0.3235567 0.53934301 0.36361688
## 400   0.408636977 0.3841132 0.9394435 0.3235567 0.53934301 0.36361688
## 990   0.408636977 0.3841132 0.9394435 0.3235567 0.53934301 0.36361688
## 1115  0.408636977 0.3841132 0.9394435 0.3235567 0.53934301 0.36361688
## 29    0.404251012 0.3820346 0.9389439 0.3209785 0.53729072 0.36021645
## 109   0.404251012 0.3820346 0.9389439 0.3209785 0.53729072 0.36021645
## 257   0.404251012 0.3820346 0.9389439 0.3209785 0.53729072 0.36021645
## 335   0.404251012 0.3820346 0.9389439 0.3209785 0.53729072 0.36021645
## 1198  0.404251012 0.3820346 0.9389439 0.3209785 0.53729072 0.36021645
## 373   0.398987854 0.3795699 0.9383333 0.3179032 0.53484848 0.35614537
## 437   0.398987854 0.3795699 0.9383333 0.3179032 0.53484848 0.35614537
## 522   0.398987854 0.3795699 0.9383333 0.3179032 0.53484848 0.35614537
## 1012  0.398987854 0.3795699 0.9383333 0.3179032 0.53484848 0.35614537
## 1130  0.398987854 0.3795699 0.9383333 0.3179032 0.53484848 0.35614537
## 1162  0.398987854 0.3795699 0.9383333 0.3179032 0.53484848 0.35614537
## 193   0.398920378 0.3790150 0.9395973 0.3186123 0.53474320 0.35651219
## 541   0.398920378 0.3790150 0.9395973 0.3186123 0.53474320 0.35651219
## 1318  0.398920378 0.3790150 0.9395973 0.3186123 0.53474320 0.35651219
## 1399  0.398920378 0.3790150 0.9395973 0.3186123 0.53474320 0.35651219
## 1211  0.397165992 0.3782051 0.9393939 0.3175991 0.53393665 0.35516130
## 1485  0.397165992 0.3782051 0.9393939 0.3175991 0.53393665 0.35516130
## 152   0.392780027 0.3761955 0.9388795 0.3150750 0.53193088 0.35178852
## 354   0.392780027 0.3761955 0.9388795 0.3150750 0.53193088 0.35178852
## 536   0.392780027 0.3761955 0.9388795 0.3150750 0.53193088 0.35178852
## 929   0.392780027 0.3761955 0.9388795 0.3150750 0.53193088 0.35178852
## 1483  0.392780027 0.3761955 0.9388795 0.3150750 0.53193088 0.35178852
## 37    0.387516869 0.3738120 0.9382504 0.3120625 0.52954375 0.34774915
## 96    0.387516869 0.3738120 0.9382504 0.3120625 0.52954375 0.34774915
## 461   0.387516869 0.3738120 0.9382504 0.3120625 0.52954375 0.34774915
## 993   0.387516869 0.3738120 0.9382504 0.3120625 0.52954375 0.34774915
## 1166  0.387516869 0.3738120 0.9382504 0.3120625 0.52954375 0.34774915
## 1230  0.387516869 0.3738120 0.9382504 0.3120625 0.52954375 0.34774915
## 689   0.388326586 0.3736842 0.9396552 0.3133394 0.52985075 0.34882376
## 810   0.388326586 0.3736842 0.9396552 0.3133394 0.52985075 0.34882376
## 1165  0.388326586 0.3736842 0.9396552 0.3133394 0.52985075 0.34882376
## 209   0.383940621 0.3717277 0.9391304 0.3108582 0.52788104 0.34547226
## 979   0.383940621 0.3717277 0.9391304 0.3108582 0.52788104 0.34547226
## 1190  0.383940621 0.3717277 0.9391304 0.3108582 0.52788104 0.34547226
## 1252  0.383940621 0.3717277 0.9391304 0.3108582 0.52788104 0.34547226
## 1441  0.383940621 0.3717277 0.9391304 0.3108582 0.52788104 0.34547226
## 286   0.379554656 0.3697917 0.9385965 0.3083882 0.52592593 0.34212594
## 302   0.379554656 0.3697917 0.9385965 0.3083882 0.52592593 0.34212594
## 493   0.379554656 0.3697917 0.9385965 0.3083882 0.52592593 0.34212594
## 671   0.379554656 0.3697917 0.9385965 0.3083882 0.52592593 0.34212594
## 792   0.379554656 0.3697917 0.9385965 0.3083882 0.52592593 0.34212594
## 528   0.377732794 0.3685300 0.9397163 0.3082463 0.52507375 0.34122536
## 833   0.377732794 0.3685300 0.9397163 0.3082463 0.52507375 0.34122536
## 941   0.377732794 0.3685300 0.9397163 0.3082463 0.52507375 0.34122536
## 1072  0.377732794 0.3685300 0.9397163 0.3082463 0.52507375 0.34122536
## 1405  0.377732794 0.3685300 0.9397163 0.3082463 0.52507375 0.34122536
## 1417  0.377732794 0.3685300 0.9397163 0.3082463 0.52507375 0.34122536
## 32    0.371592443 0.3658787 0.9389587 0.3048374 0.52237711 0.33656394
## 58    0.371592443 0.3658787 0.9389587 0.3048374 0.52237711 0.33656394
## 226   0.371592443 0.3658787 0.9389587 0.3048374 0.52237711 0.33656394
## 458   0.371592443 0.3658787 0.9389587 0.3048374 0.52237711 0.33656394
## 746   0.371592443 0.3658787 0.9389587 0.3048374 0.52237711 0.33656394
## 1266  0.371592443 0.3658787 0.9389587 0.3048374 0.52237711 0.33656394
## 1414  0.371592443 0.3658787 0.9389587 0.3048374 0.52237711 0.33656394
## 54    0.371457490 0.3649337 0.9417122 0.3066459 0.52224654 0.33749953
## 560   0.371457490 0.3649337 0.9417122 0.3066459 0.52224654 0.33749953
## 561   0.371457490 0.3649337 0.9417122 0.3066459 0.52224654 0.33749953
## 573   0.371457490 0.3649337 0.9417122 0.3066459 0.52224654 0.33749953
## 753   0.371457490 0.3649337 0.9417122 0.3066459 0.52224654 0.33749953
## 789   0.371457490 0.3649337 0.9417122 0.3066459 0.52224654 0.33749953
## 845   0.371457490 0.3649337 0.9417122 0.3066459 0.52224654 0.33749953
## 1025  0.371457490 0.3649337 0.9417122 0.3066459 0.52224654 0.33749953
## 356   0.372267206 0.3648374 0.9432234 0.3080608 0.52256186 0.33864576
## 1178  0.372267206 0.3648374 0.9432234 0.3080608 0.52256186 0.33864576
## 1358  0.372267206 0.3648374 0.9432234 0.3080608 0.52256186 0.33864576
## 351   0.367881242 0.3629929 0.9426987 0.3056916 0.52066715 0.33534790
## 507   0.367881242 0.3629929 0.9426987 0.3056916 0.52066715 0.33534790
## 726   0.367881242 0.3629929 0.9426987 0.3056916 0.52066715 0.33534790
## 838   0.367881242 0.3629929 0.9426987 0.3056916 0.52066715 0.33534790
## 1255  0.367881242 0.3629929 0.9426987 0.3056916 0.52066715 0.33534790
## 1     0.359986505 0.3597194 0.9417293 0.3014488 0.51729107 0.32941992
## 108   0.359986505 0.3597194 0.9417293 0.3014488 0.51729107 0.32941992
## 816   0.359986505 0.3597194 0.9417293 0.3014488 0.51729107 0.32941992
## 924   0.359986505 0.3597194 0.9417293 0.3014488 0.51729107 0.32941992
## 986   0.359986505 0.3597194 0.9417293 0.3014488 0.51729107 0.32941992
## 1091  0.359986505 0.3597194 0.9417293 0.3014488 0.51729107 0.32941992
## 1161  0.359986505 0.3597194 0.9417293 0.3014488 0.51729107 0.32941992
## 1306  0.359986505 0.3597194 0.9417293 0.3014488 0.51729107 0.32941992
## 1489  0.359986505 0.3597194 0.9417293 0.3014488 0.51729107 0.32941992
## 57    0.353846154 0.3572139 0.9409524 0.2981663 0.51469534 0.32481534
## 125   0.353846154 0.3572139 0.9409524 0.2981663 0.51469534 0.32481534
## 368   0.353846154 0.3572139 0.9409524 0.2981663 0.51469534 0.32481534
## 1081  0.353846154 0.3572139 0.9409524 0.2981663 0.51469534 0.32481534
## 1155  0.353846154 0.3572139 0.9409524 0.2981663 0.51469534 0.32481534
## 1372  0.353846154 0.3572139 0.9409524 0.2981663 0.51469534 0.32481534
## 1506  0.353846154 0.3572139 0.9409524 0.2981663 0.51469534 0.32481534
## 371   0.350337382 0.3557978 0.9404990 0.2962969 0.51322373 0.32218607
## 700   0.350337382 0.3557978 0.9404990 0.2962969 0.51322373 0.32218607
## 1134  0.350337382 0.3557978 0.9404990 0.2962969 0.51322373 0.32218607
## 1188  0.350337382 0.3557978 0.9404990 0.2962969 0.51322373 0.32218607
## 83    0.345951417 0.3540434 0.9399225 0.2939659 0.51139601 0.31890110
## 648   0.345951417 0.3540434 0.9399225 0.2939659 0.51139601 0.31890110
## 822   0.345951417 0.3540434 0.9399225 0.2939659 0.51139601 0.31890110
## 940   0.345951417 0.3540434 0.9399225 0.2939659 0.51139601 0.31890110
## 1416  0.345951417 0.3540434 0.9399225 0.2939659 0.51139601 0.31890110
## 36    0.346693657 0.3535749 0.9430255 0.2966005 0.51169383 0.32067039
## 558   0.346693657 0.3535749 0.9430255 0.2966005 0.51169383 0.32067039
## 599   0.346693657 0.3535749 0.9430255 0.2966005 0.51169383 0.32067039
## 984   0.346693657 0.3535749 0.9430255 0.2966005 0.51169383 0.32067039
## 1005  0.346693657 0.3535749 0.9430255 0.2966005 0.51169383 0.32067039
## 1218  0.346693657 0.3535749 0.9430255 0.2966005 0.51169383 0.32067039
## 1497  0.346693657 0.3535749 0.9430255 0.2966005 0.51169383 0.32067039
## 288   0.349190283 0.3538012 0.9464286 0.3002297 0.51271186 0.32378590
## 347   0.349190283 0.3538012 0.9464286 0.3002297 0.51271186 0.32378590
## 412   0.349190283 0.3538012 0.9464286 0.3002297 0.51271186 0.32378590
## 1148  0.349190283 0.3538012 0.9464286 0.3002297 0.51271186 0.32378590
## 1495  0.349190283 0.3538012 0.9464286 0.3002297 0.51271186 0.32378590
## 1240  0.350877193 0.3540856 0.9482072 0.3022928 0.51339915 0.32568027
## 1469  0.350877193 0.3540856 0.9482072 0.3022928 0.51339915 0.32568027
## 244   0.346423752 0.3519769 0.9492901 0.3012669 0.51156272 0.32305729
## 693   0.346423752 0.3519769 0.9492901 0.3012669 0.51156272 0.32305729
## 796   0.346423752 0.3519769 0.9492901 0.3012669 0.51156272 0.32305729
## 918   0.346423752 0.3519769 0.9492901 0.3012669 0.51156272 0.32305729
## 1281  0.346423752 0.3519769 0.9492901 0.3012669 0.51156272 0.32305729
## 1285  0.346423752 0.3519769 0.9492901 0.3012669 0.51156272 0.32305729
## 1379  0.346423752 0.3519769 0.9492901 0.3012669 0.51156272 0.32305729
## 1432  0.346423752 0.3519769 0.9492901 0.3012669 0.51156272 0.32305729
## 1523  0.346423752 0.3519769 0.9492901 0.3012669 0.51156272 0.32305729
## 128   0.342914980 0.3506244 0.9488753 0.2994997 0.51013277 0.32047296
## 203   0.342914980 0.3506244 0.9488753 0.2994997 0.51013277 0.32047296
## 462   0.342914980 0.3506244 0.9488753 0.2994997 0.51013277 0.32047296
## 1307  0.342914980 0.3506244 0.9488753 0.2994997 0.51013277 0.32047296
## 6     0.338529015 0.3489484 0.9483471 0.2972955 0.50835655 0.31724304
## 180   0.338529015 0.3489484 0.9483471 0.2972955 0.50835655 0.31724304
## 216   0.338529015 0.3489484 0.9483471 0.2972955 0.50835655 0.31724304
## 360   0.338529015 0.3489484 0.9483471 0.2972955 0.50835655 0.31724304
## 1234  0.338529015 0.3489484 0.9483471 0.2972955 0.50835655 0.31724304
## 559   0.347031039 0.3507605 0.9560669 0.3068274 0.51178918 0.32631064
## 723   0.347031039 0.3507605 0.9560669 0.3068274 0.51178918 0.32631064
## 967   0.347031039 0.3507605 0.9560669 0.3068274 0.51178918 0.32631064
## 1247  0.347031039 0.3507605 0.9560669 0.3068274 0.51178918 0.32631064
## 1322  0.347031039 0.3507605 0.9560669 0.3068274 0.51178918 0.32631064
## 1508  0.347031039 0.3507605 0.9560669 0.3068274 0.51178918 0.32631064
## 195   0.340890688 0.3484419 0.9554140 0.3038559 0.50931677 0.32184105
## 369   0.340890688 0.3484419 0.9554140 0.3038559 0.50931677 0.32184105
## 837   0.340890688 0.3484419 0.9554140 0.3038559 0.50931677 0.32184105
## 1011  0.340890688 0.3484419 0.9554140 0.3038559 0.50931677 0.32184105
## 1152  0.340890688 0.3484419 0.9554140 0.3038559 0.50931677 0.32184105
## 1423  0.340890688 0.3484419 0.9554140 0.3038559 0.50931677 0.32184105
## 1521  0.340890688 0.3484419 0.9554140 0.3038559 0.50931677 0.32184105
## 362   0.336504723 0.3468045 0.9549356 0.3017401 0.50756534 0.31864868
## 871   0.336504723 0.3468045 0.9549356 0.3017401 0.50756534 0.31864868
## 920   0.336504723 0.3468045 0.9549356 0.3017401 0.50756534 0.31864868
## 1014  0.336504723 0.3468045 0.9549356 0.3017401 0.50756534 0.31864868
## 1370  0.336504723 0.3468045 0.9549356 0.3017401 0.50756534 0.31864868
## 215   0.330364372 0.3445378 0.9542484 0.2987862 0.50513347 0.31417879
## 236   0.330364372 0.3445378 0.9542484 0.2987862 0.50513347 0.31417879
## 294   0.330364372 0.3445378 0.9542484 0.2987862 0.50513347 0.31417879
## 366   0.330364372 0.3445378 0.9542484 0.2987862 0.50513347 0.31417879
## 570   0.330364372 0.3445378 0.9542484 0.2987862 0.50513347 0.31417879
## 945   0.330364372 0.3445378 0.9542484 0.2987862 0.50513347 0.31417879
## 1253  0.330364372 0.3445378 0.9542484 0.2987862 0.50513347 0.31417879
## 33    0.330296896 0.3441860 0.9560440 0.3002300 0.50511945 0.31490481
## 476   0.330296896 0.3441860 0.9560440 0.3002300 0.50511945 0.31490481
## 523   0.330296896 0.3441860 0.9560440 0.3002300 0.50511945 0.31490481
## 588   0.330296896 0.3441860 0.9560440 0.3002300 0.50511945 0.31490481
## 117   0.326788124 0.3429101 0.9556541 0.2985642 0.50374404 0.31235755
## 301   0.326788124 0.3429101 0.9556541 0.2985642 0.50374404 0.31235755
## 598   0.326788124 0.3429101 0.9556541 0.2985642 0.50374404 0.31235755
## 1328  0.326788124 0.3429101 0.9556541 0.2985642 0.50374404 0.31235755
## 88    0.327530364 0.3425414 0.9594595 0.3020009 0.50406504 0.31450670
## 421   0.327530364 0.3425414 0.9594595 0.3020009 0.50406504 0.31450670
## 861   0.327530364 0.3425414 0.9594595 0.3020009 0.50406504 0.31450670
## 1017  0.327530364 0.3425414 0.9594595 0.3020009 0.50406504 0.31450670
## 1023  0.327530364 0.3425414 0.9594595 0.3020009 0.50406504 0.31450670
## 1312  0.327530364 0.3425414 0.9594595 0.3020009 0.50406504 0.31450670
## 1361  0.327530364 0.3425414 0.9594595 0.3020009 0.50406504 0.31450670
## 111   0.319635628 0.3397260 0.9586207 0.2983467 0.50101010 0.30880777
## 399   0.319635628 0.3397260 0.9586207 0.2983467 0.50101010 0.30880777
## 518   0.319635628 0.3397260 0.9586207 0.2983467 0.50101010 0.30880777
## 688   0.319635628 0.3397260 0.9586207 0.2983467 0.50101010 0.30880777
## 743   0.319635628 0.3397260 0.9586207 0.2983467 0.50101010 0.30880777
## 1015  0.319635628 0.3397260 0.9586207 0.2983467 0.50101010 0.30880777
## 1196  0.319635628 0.3397260 0.9586207 0.2983467 0.50101010 0.30880777
## 1228  0.319635628 0.3397260 0.9586207 0.2983467 0.50101010 0.30880777
## 1406  0.319635628 0.3397260 0.9586207 0.2983467 0.50101010 0.30880777
## 82    0.313495277 0.3375681 0.9579439 0.2955120 0.49865952 0.30437084
## 473   0.313495277 0.3375681 0.9579439 0.2955120 0.49865952 0.30437084
## 614   0.313495277 0.3375681 0.9579439 0.2955120 0.49865952 0.30437084
## 921   0.313495277 0.3375681 0.9579439 0.2955120 0.49865952 0.30437084
## 1038  0.313495277 0.3375681 0.9579439 0.2955120 0.49865952 0.30437084
## 1075  0.313495277 0.3375681 0.9579439 0.2955120 0.49865952 0.30437084
## 1327  0.313495277 0.3375681 0.9579439 0.2955120 0.49865952 0.30437084
## 694   0.312618084 0.3372620 0.9578454 0.2951074 0.49832552 0.30373660
## 539   0.309109312 0.3360434 0.9574468 0.2934902 0.49699399 0.30119851
## 842   0.309109312 0.3360434 0.9574468 0.2934902 0.49699399 0.30119851
## 854   0.309109312 0.3360434 0.9574468 0.2934902 0.49699399 0.30119851
## 1194  0.309109312 0.3360434 0.9574468 0.2934902 0.49699399 0.30119851
## 403   0.307354926 0.3354373 0.9572447 0.2926820 0.49633089 0.29992874
## 1257  0.307354926 0.3354373 0.9572447 0.2926820 0.49633089 0.29992874
## 8     0.301214575 0.3333333 0.9565217 0.2898551 0.49402390 0.29548024
## 361   0.301214575 0.3333333 0.9565217 0.2898551 0.49402390 0.29548024
## 363   0.301214575 0.3333333 0.9565217 0.2898551 0.49402390 0.29548024
## 380   0.301214575 0.3333333 0.9565217 0.2898551 0.49402390 0.29548024
## 596   0.301214575 0.3333333 0.9565217 0.2898551 0.49402390 0.29548024
## 927   0.301214575 0.3333333 0.9565217 0.2898551 0.49402390 0.29548024
## 1341  0.301214575 0.3333333 0.9565217 0.2898551 0.49402390 0.29548024
## 121   0.291565452 0.3300799 0.9553350 0.2854148 0.49044166 0.28847376
## 157   0.291565452 0.3300799 0.9553350 0.2854148 0.49044166 0.28847376
## 298   0.291565452 0.3300799 0.9553350 0.2854148 0.49044166 0.28847376
## 621   0.291565452 0.3300799 0.9553350 0.2854148 0.49044166 0.28847376
## 651   0.291565452 0.3300799 0.9553350 0.2854148 0.49044166 0.28847376
## 944   0.291565452 0.3300799 0.9553350 0.2854148 0.49044166 0.28847376
## 960   0.291565452 0.3300799 0.9553350 0.2854148 0.49044166 0.28847376
## 1110  0.291565452 0.3300799 0.9553350 0.2854148 0.49044166 0.28847376
## 1279  0.291565452 0.3300799 0.9553350 0.2854148 0.49044166 0.28847376
## 1309  0.291565452 0.3300799 0.9553350 0.2854148 0.49044166 0.28847376
## 1527  0.291565452 0.3300799 0.9553350 0.2854148 0.49044166 0.28847376
## 116   0.290553306 0.3292254 0.9593909 0.2886162 0.49017038 0.28958314
## 239   0.290553306 0.3292254 0.9593909 0.2886162 0.49017038 0.28958314
## 395   0.290553306 0.3292254 0.9593909 0.2886162 0.49017038 0.28958314
## 510   0.290553306 0.3292254 0.9593909 0.2886162 0.49017038 0.28958314
## 1018  0.290553306 0.3292254 0.9593909 0.2886162 0.49017038 0.28958314
## 1205  0.290553306 0.3292254 0.9593909 0.2886162 0.49017038 0.28958314
## 1427  0.290553306 0.3292254 0.9593909 0.2886162 0.49017038 0.28958314
## 1504  0.290553306 0.3292254 0.9593909 0.2886162 0.49017038 0.28958314
## 1514  0.290553306 0.3292254 0.9593909 0.2886162 0.49017038 0.28958314
## 206   0.287044534 0.3280702 0.9589744 0.2870445 0.48888889 0.28704453
## 259   0.287044534 0.3280702 0.9589744 0.2870445 0.48888889 0.28704453
## 426   0.287044534 0.3280702 0.9589744 0.2870445 0.48888889 0.28704453
## 527   0.287044534 0.3280702 0.9589744 0.2870445 0.48888889 0.28704453
## 62    0.282658570 0.3266376 0.9584416 0.2850791 0.48729642 0.28386626
## 454   0.282658570 0.3266376 0.9584416 0.2850791 0.48729642 0.28386626
## 892   0.282658570 0.3266376 0.9584416 0.2850791 0.48729642 0.28386626
## 1280  0.282658570 0.3266376 0.9584416 0.2850791 0.48729642 0.28386626
## 1376  0.282658570 0.3266376 0.9584416 0.2850791 0.48729642 0.28386626
## 287   0.282523617 0.3261058 0.9628647 0.2889705 0.48736228 0.28572889
## 809   0.282523617 0.3261058 0.9628647 0.2889705 0.48736228 0.28572889
## 875   0.282523617 0.3261058 0.9628647 0.2889705 0.48736228 0.28572889
## 995   0.282523617 0.3261058 0.9628647 0.2889705 0.48736228 0.28572889
## 1096  0.282523617 0.3261058 0.9628647 0.2889705 0.48736228 0.28572889
## 1186  0.282523617 0.3261058 0.9628647 0.2889705 0.48736228 0.28572889
## 1391  0.282523617 0.3261058 0.9628647 0.2889705 0.48736228 0.28572889
## 1479  0.282523617 0.3261058 0.9628647 0.2889705 0.48736228 0.28572889
## 291   0.285020243 0.3264249 0.9677419 0.2941668 0.48837209 0.28955741
## 813   0.285020243 0.3264249 0.9677419 0.2941668 0.48837209 0.28955741
## 1001  0.285020243 0.3264249 0.9677419 0.2941668 0.48837209 0.28955741
## 1116  0.285020243 0.3264249 0.9677419 0.2941668 0.48837209 0.28955741
## 1500  0.285020243 0.3264249 0.9677419 0.2941668 0.48837209 0.28955741
## 618   0.282388664 0.3255814 0.9674797 0.2930611 0.48742747 0.28767538
## 768   0.282388664 0.3255814 0.9674797 0.2930611 0.48742747 0.28767538
## 1221  0.282388664 0.3255814 0.9674797 0.2930611 0.48742747 0.28767538
## 141   0.284885290 0.3259005 0.9725275 0.2984280 0.48843188 0.29157802
## 166   0.284885290 0.3259005 0.9725275 0.2984280 0.48843188 0.29157802
## 404   0.284885290 0.3259005 0.9725275 0.2984280 0.48843188 0.29157802
## 1263  0.284885290 0.3259005 0.9725275 0.2984280 0.48843188 0.29157802
## 1352  0.284885290 0.3259005 0.9725275 0.2984280 0.48843188 0.29157802
## 1082  0.283130904 0.3253425 0.9723757 0.2977182 0.48780488 0.29033293
## 1484  0.283130904 0.3253425 0.9723757 0.2977182 0.48780488 0.29033293
## 16    0.278744939 0.3239557 0.9719888 0.2959445 0.48624440 0.28721598
## 299   0.278744939 0.3239557 0.9719888 0.2959445 0.48624440 0.28721598
## 530   0.278744939 0.3239557 0.9719888 0.2959445 0.48624440 0.28721598
## 608   0.278744939 0.3239557 0.9719888 0.2959445 0.48624440 0.28721598
## 1529  0.278744939 0.3239557 0.9719888 0.2959445 0.48624440 0.28721598
## 961   0.277867746 0.3236797 0.9719101 0.2955898 0.48593350 0.28659184
## 472   0.276923077 0.3231552 0.9743590 0.2975142 0.48565966 0.28703405
## 477   0.276923077 0.3231552 0.9743590 0.2975142 0.48565966 0.28703405
## 622   0.276923077 0.3231552 0.9743590 0.2975142 0.48565966 0.28703405
## 628   0.276923077 0.3231552 0.9743590 0.2975142 0.48565966 0.28703405
## 1207  0.276923077 0.3231552 0.9743590 0.2975142 0.48565966 0.28703405
## 92    0.272537112 0.3217905 0.9739884 0.2957790 0.48411690 0.28392032
## 336   0.272537112 0.3217905 0.9739884 0.2957790 0.48411690 0.28392032
## 946   0.272537112 0.3217905 0.9739884 0.2957790 0.48411690 0.28392032
## 1488  0.272537112 0.3217905 0.9739884 0.2957790 0.48411690 0.28392032
## 1510  0.272537112 0.3217905 0.9739884 0.2957790 0.48411690 0.28392032
## 326   0.267273954 0.3201681 0.9735294 0.2936975 0.48227848 0.28017439
## 407   0.267273954 0.3201681 0.9735294 0.2936975 0.48227848 0.28017439
## 1076  0.267273954 0.3201681 0.9735294 0.2936975 0.48227848 0.28017439
## 1239  0.267273954 0.3201681 0.9735294 0.2936975 0.48227848 0.28017439
## 1428  0.267273954 0.3201681 0.9735294 0.2936975 0.48227848 0.28017439
## 1452  0.267273954 0.3201681 0.9735294 0.2936975 0.48227848 0.28017439
## 532   0.264642375 0.3193630 0.9732938 0.2926567 0.48136450 0.27829727
## 818   0.264642375 0.3193630 0.9732938 0.2926567 0.48136450 0.27829727
## 1505  0.264642375 0.3193630 0.9732938 0.2926567 0.48136450 0.27829727
## 724   0.266261808 0.3194329 0.9788520 0.2982848 0.48206419 0.28181884
## 754   0.266261808 0.3194329 0.9788520 0.2982848 0.48206419 0.28181884
## 887   0.266261808 0.3194329 0.9788520 0.2982848 0.48206419 0.28181884
## 1059  0.266261808 0.3194329 0.9788520 0.2982848 0.48206419 0.28181884
## 1113  0.266261808 0.3194329 0.9788520 0.2982848 0.48206419 0.28181884
## 1315  0.266261808 0.3194329 0.9788520 0.2982848 0.48206419 0.28181884
## 26    0.261875843 0.3181063 0.9785276 0.2966339 0.48055207 0.27871358
## 154   0.261875843 0.3181063 0.9785276 0.2966339 0.48055207 0.27871358
## 425   0.261875843 0.3181063 0.9785276 0.2966339 0.48055207 0.27871358
## 440   0.261875843 0.3181063 0.9785276 0.2966339 0.48055207 0.27871358
## 606   0.261875843 0.3181063 0.9785276 0.2966339 0.48055207 0.27871358
## 161   0.253103914 0.3154860 0.9778481 0.2933341 0.47755611 0.27247754
## 165   0.253103914 0.3154860 0.9778481 0.2933341 0.47755611 0.27247754
## 207   0.253103914 0.3154860 0.9778481 0.2933341 0.47755611 0.27247754
## 501   0.253103914 0.3154860 0.9778481 0.2933341 0.47755611 0.27247754
## 821   0.253103914 0.3154860 0.9778481 0.2933341 0.47755611 0.27247754
## 1026  0.253103914 0.3154860 0.9778481 0.2933341 0.47755611 0.27247754
## 1053  0.253103914 0.3154860 0.9778481 0.2933341 0.47755611 0.27247754
## 1061  0.253103914 0.3154860 0.9778481 0.2933341 0.47755611 0.27247754
## 1089  0.253103914 0.3154860 0.9778481 0.2933341 0.47755611 0.27247754
## 1136  0.253103914 0.3154860 0.9778481 0.2933341 0.47755611 0.27247754
## 186   0.246963563 0.3136773 0.9773463 0.2910236 0.47548107 0.26808995
## 402   0.246963563 0.3136773 0.9773463 0.2910236 0.47548107 0.26808995
## 406   0.246963563 0.3136773 0.9773463 0.2910236 0.47548107 0.26808995
## 434   0.246963563 0.3136773 0.9773463 0.2910236 0.47548107 0.26808995
## 484   0.246963563 0.3136773 0.9773463 0.2910236 0.47548107 0.26808995
## 616   0.246963563 0.3136773 0.9773463 0.2910236 0.47548107 0.26808995
## 1141  0.246963563 0.3136773 0.9773463 0.2910236 0.47548107 0.26808995
## 104   0.238191633 0.3111292 0.9765886 0.2877178 0.47254781 0.26178612
## 155   0.238191633 0.3111292 0.9765886 0.2877178 0.47254781 0.26178612
## 187   0.238191633 0.3111292 0.9765886 0.2877178 0.47254781 0.26178612
## 721   0.238191633 0.3111292 0.9765886 0.2877178 0.47254781 0.26178612
## 852   0.238191633 0.3111292 0.9765886 0.2877178 0.47254781 0.26178612
## 1010  0.238191633 0.3111292 0.9765886 0.2877178 0.47254781 0.26178612
## 1039  0.238191633 0.3111292 0.9765886 0.2877178 0.47254781 0.26178612
## 1310  0.238191633 0.3111292 0.9765886 0.2877178 0.47254781 0.26178612
## 1351  0.238191633 0.3111292 0.9765886 0.2877178 0.47254781 0.26178612
## 1411  0.238191633 0.3111292 0.9765886 0.2877178 0.47254781 0.26178612
## 75    0.233738192 0.3096774 0.9793103 0.2889878 0.47116564 0.25989898
## 684   0.233738192 0.3096774 0.9793103 0.2889878 0.47116564 0.25989898
## 699   0.233738192 0.3096774 0.9793103 0.2889878 0.47116564 0.25989898
## 862   0.233738192 0.3096774 0.9793103 0.2889878 0.47116564 0.25989898
## 883   0.233738192 0.3096774 0.9793103 0.2889878 0.47116564 0.25989898
## 1151  0.233738192 0.3096774 0.9793103 0.2889878 0.47116564 0.25989898
## 1184  0.233738192 0.3096774 0.9793103 0.2889878 0.47116564 0.25989898
## 1276  0.233738192 0.3096774 0.9793103 0.2889878 0.47116564 0.25989898
## 1476  0.233738192 0.3096774 0.9793103 0.2889878 0.47116564 0.25989898
## 430   0.236234818 0.3100402 0.9859649 0.2960051 0.47217125 0.26443658
## 586   0.236234818 0.3100402 0.9859649 0.2960051 0.47217125 0.26443658
## 905   0.236234818 0.3100402 0.9859649 0.2960051 0.47217125 0.26443658
## 934   0.236234818 0.3100402 0.9859649 0.2960051 0.47217125 0.26443658
## 1150  0.236234818 0.3100402 0.9859649 0.2960051 0.47217125 0.26443658
## 134   0.230094467 0.3083067 0.9856115 0.2939182 0.47015834 0.26005568
## 300   0.230094467 0.3083067 0.9856115 0.2939182 0.47015834 0.26005568
## 401   0.230094467 0.3083067 0.9856115 0.2939182 0.47015834 0.26005568
## 869   0.230094467 0.3083067 0.9856115 0.2939182 0.47015834 0.26005568
## 872   0.230094467 0.3083067 0.9856115 0.2939182 0.47015834 0.26005568
## 1109  0.230094467 0.3083067 0.9856115 0.2939182 0.47015834 0.26005568
## 1378  0.230094467 0.3083067 0.9856115 0.2939182 0.47015834 0.26005568
## 118   0.222132254 0.3059289 0.9886792 0.2946081 0.46767372 0.25581626
## 188   0.222132254 0.3059289 0.9886792 0.2946081 0.46767372 0.25581626
## 234   0.222132254 0.3059289 0.9886792 0.2946081 0.46767372 0.25581626
## 441   0.222132254 0.3059289 0.9886792 0.2946081 0.46767372 0.25581626
## 611   0.222132254 0.3059289 0.9886792 0.2946081 0.46767372 0.25581626
## 719   0.222132254 0.3059289 0.9886792 0.2946081 0.46767372 0.25581626
## 761   0.222132254 0.3059289 0.9886792 0.2946081 0.46767372 0.25581626
## 1209  0.222132254 0.3059289 0.9886792 0.2946081 0.46767372 0.25581626
## 1249  0.222132254 0.3059289 0.9886792 0.2946081 0.46767372 0.25581626
## 1273  0.222132254 0.3059289 0.9886792 0.2946081 0.46767372 0.25581626
## 1339  0.222132254 0.3059289 0.9886792 0.2946081 0.46767372 0.25581626
## 1491  0.222132254 0.3059289 0.9886792 0.2946081 0.46767372 0.25581626
## 1524  0.222132254 0.3059289 0.9886792 0.2946081 0.46767372 0.25581626
## 93    0.214237517 0.3037677 0.9882812 0.2920489 0.46514423 0.25013563
## 120   0.214237517 0.3037677 0.9882812 0.2920489 0.46514423 0.25013563
## 122   0.214237517 0.3037677 0.9882812 0.2920489 0.46514423 0.25013563
## 160   0.214237517 0.3037677 0.9882812 0.2920489 0.46514423 0.25013563
## 218   0.214237517 0.3037677 0.9882812 0.2920489 0.46514423 0.25013563
## 264   0.214237517 0.3037677 0.9882812 0.2920489 0.46514423 0.25013563
## 483   0.214237517 0.3037677 0.9882812 0.2920489 0.46514423 0.25013563
## 670   0.214237517 0.3037677 0.9882812 0.2920489 0.46514423 0.25013563
## 1090  0.214237517 0.3037677 0.9882812 0.2920489 0.46514423 0.25013563
## 132   0.207219973 0.3018721 0.9879032 0.2897753 0.46291866 0.24504536
## 365   0.207219973 0.3018721 0.9879032 0.2897753 0.46291866 0.24504536
## 466   0.207219973 0.3018721 0.9879032 0.2897753 0.46291866 0.24504536
## 645   0.207219973 0.3018721 0.9879032 0.2897753 0.46291866 0.24504536
## 673   0.207219973 0.3018721 0.9879032 0.2897753 0.46291866 0.24504536
## 1201  0.207219973 0.3018721 0.9879032 0.2897753 0.46291866 0.24504536
## 1300  0.207219973 0.3018721 0.9879032 0.2897753 0.46291866 0.24504536
## 1516  0.207219973 0.3018721 0.9879032 0.2897753 0.46291866 0.24504536
## 183   0.202834008 0.3006993 0.9876543 0.2883536 0.46153846 0.24184276
## 429   0.202834008 0.3006993 0.9876543 0.2883536 0.46153846 0.24184276
## 463   0.202834008 0.3006993 0.9876543 0.2883536 0.46153846 0.24184276
## 1272  0.202834008 0.3006993 0.9876543 0.2883536 0.46153846 0.24184276
## 1346  0.202834008 0.3006993 0.9876543 0.2883536 0.46153846 0.24184276
## 42    0.197503374 0.2991519 0.9914163 0.2905682 0.45998814 0.23955834
## 133   0.197503374 0.2991519 0.9914163 0.2905682 0.45998814 0.23955834
## 289   0.197503374 0.2991519 0.9914163 0.2905682 0.45998814 0.23955834
## 480   0.197503374 0.2991519 0.9914163 0.2905682 0.45998814 0.23955834
## 683   0.197503374 0.2991519 0.9914163 0.2905682 0.45998814 0.23955834
## 770   0.197503374 0.2991519 0.9914163 0.2905682 0.45998814 0.23955834
## 912   0.197503374 0.2991519 0.9914163 0.2905682 0.45998814 0.23955834
## 1062  0.197503374 0.2991519 0.9914163 0.2905682 0.45998814 0.23955834
## 1278  0.197503374 0.2991519 0.9914163 0.2905682 0.45998814 0.23955834
## 1313  0.197503374 0.2991519 0.9914163 0.2905682 0.45998814 0.23955834
## 350   0.193117409 0.2980031 0.9912281 0.2892311 0.45862884 0.23633783
## 576   0.193117409 0.2980031 0.9912281 0.2892311 0.45862884 0.23633783
## 787   0.193117409 0.2980031 0.9912281 0.2892311 0.45862884 0.23633783
## 1449  0.193117409 0.2980031 0.9912281 0.2892311 0.45862884 0.23633783
## 1480  0.193117409 0.2980031 0.9912281 0.2892311 0.45862884 0.23633783
## 219   0.190485830 0.2973180 0.9911111 0.2884291 0.45781711 0.23439637
## 751   0.190485830 0.2973180 0.9911111 0.2884291 0.45781711 0.23439637
## 911   0.190485830 0.2973180 0.9911111 0.2884291 0.45781711 0.23439637
## 3     0.183468286 0.2955065 0.9907834 0.2862899 0.45566647 0.22918358
## 24    0.183468286 0.2955065 0.9907834 0.2862899 0.45566647 0.22918358
## 119   0.183468286 0.2955065 0.9907834 0.2862899 0.45566647 0.22918358
## 460   0.183468286 0.2955065 0.9907834 0.2862899 0.45566647 0.22918358
## 701   0.183468286 0.2955065 0.9907834 0.2862899 0.45566647 0.22918358
## 1331  0.183468286 0.2955065 0.9907834 0.2862899 0.45566647 0.22918358
## 1498  0.183468286 0.2955065 0.9907834 0.2862899 0.45566647 0.22918358
## 1515  0.183468286 0.2955065 0.9907834 0.2862899 0.45566647 0.22918358
## 67    0.178137652 0.2940287 0.9951691 0.2891978 0.45417396 0.22697361
## 91    0.178137652 0.2940287 0.9951691 0.2891978 0.45417396 0.22697361
## 131   0.178137652 0.2940287 0.9951691 0.2891978 0.45417396 0.22697361
## 153   0.178137652 0.2940287 0.9951691 0.2891978 0.45417396 0.22697361
## 163   0.178137652 0.2940287 0.9951691 0.2891978 0.45417396 0.22697361
## 217   0.178137652 0.2940287 0.9951691 0.2891978 0.45417396 0.22697361
## 304   0.178137652 0.2940287 0.9951691 0.2891978 0.45417396 0.22697361
## 756   0.178137652 0.2940287 0.9951691 0.2891978 0.45417396 0.22697361
## 797   0.178137652 0.2940287 0.9951691 0.2891978 0.45417396 0.22697361
## 1124  0.178137652 0.2940287 0.9951691 0.2891978 0.45417396 0.22697361
## 324   0.169365722 0.2918230 0.9949239 0.2867468 0.45153802 0.22037486
## 649   0.169365722 0.2918230 0.9949239 0.2867468 0.45153802 0.22037486
## 652   0.169365722 0.2918230 0.9949239 0.2867468 0.45153802 0.22037486
## 859   0.169365722 0.2918230 0.9949239 0.2867468 0.45153802 0.22037486
## 931   0.169365722 0.2918230 0.9949239 0.2867468 0.45153802 0.22037486
## 994   0.169365722 0.2918230 0.9949239 0.2867468 0.45153802 0.22037486
## 1195  0.169365722 0.2918230 0.9949239 0.2867468 0.45153802 0.22037486
## 1238  0.169365722 0.2918230 0.9949239 0.2867468 0.45153802 0.22037486
## 1302  0.169365722 0.2918230 0.9949239 0.2867468 0.45153802 0.22037486
## 1332  0.169365722 0.2918230 0.9949239 0.2867468 0.45153802 0.22037486
## 14    0.159716599 0.2894345 0.9946237 0.2840582 0.44867359 0.21299955
## 212   0.159716599 0.2894345 0.9946237 0.2840582 0.44867359 0.21299955
## 383   0.159716599 0.2894345 0.9946237 0.2840582 0.44867359 0.21299955
## 479   0.159716599 0.2894345 0.9946237 0.2840582 0.44867359 0.21299955
## 750   0.159716599 0.2894345 0.9946237 0.2840582 0.44867359 0.21299955
## 865   0.159716599 0.2894345 0.9946237 0.2840582 0.44867359 0.21299955
## 1225  0.159716599 0.2894345 0.9946237 0.2840582 0.44867359 0.21299955
## 1420  0.159716599 0.2894345 0.9946237 0.2840582 0.44867359 0.21299955
## 1433  0.159716599 0.2894345 0.9946237 0.2840582 0.44867359 0.21299955
## 1509  0.159716599 0.2894345 0.9946237 0.2840582 0.44867359 0.21299955
## 1526  0.159716599 0.2894345 0.9946237 0.2840582 0.44867359 0.21299955
## 749   0.155330634 0.2883617 0.9944751 0.2828369 0.44738355 0.20960256
## 820   0.155330634 0.2883617 0.9944751 0.2828369 0.44738355 0.20960256
## 1342  0.155330634 0.2883617 0.9944751 0.2828369 0.44738355 0.20960256
## 1412  0.155330634 0.2883617 0.9944751 0.2828369 0.44738355 0.20960256
## 1517  0.155330634 0.2883617 0.9944751 0.2828369 0.44738355 0.20960256
## 5     0.146558704 0.2862399 0.9941520 0.2803919 0.44482561 0.20271625
## 65    0.146558704 0.2862399 0.9941520 0.2803919 0.44482561 0.20271625
## 385   0.146558704 0.2862399 0.9941520 0.2803919 0.44482561 0.20271625
## 396   0.146558704 0.2862399 0.9941520 0.2803919 0.44482561 0.20271625
## 482   0.146558704 0.2862399 0.9941520 0.2803919 0.44482561 0.20271625
## 625   0.146558704 0.2862399 0.9941520 0.2803919 0.44482561 0.20271625
## 987   0.146558704 0.2862399 0.9941520 0.2803919 0.44482561 0.20271625
## 1080  0.146558704 0.2862399 0.9941520 0.2803919 0.44482561 0.20271625
## 1200  0.146558704 0.2862399 0.9941520 0.2803919 0.44482561 0.20271625
## 1333  0.146558704 0.2862399 0.9941520 0.2803919 0.44482561 0.20271625
## 90    0.141295547 0.2849817 0.9939394 0.2789211 0.44330484 0.19852029
## 176   0.141295547 0.2849817 0.9939394 0.2789211 0.44330484 0.19852029
## 439   0.141295547 0.2849817 0.9939394 0.2789211 0.44330484 0.19852029
## 615   0.141295547 0.2849817 0.9939394 0.2789211 0.44330484 0.19852029
## 917   0.141295547 0.2849817 0.9939394 0.2789211 0.44330484 0.19852029
## 1445  0.141295547 0.2849817 0.9939394 0.2789211 0.44330484 0.19852029
## 86    0.135964912 0.2836364 1.0000000 0.2836364 0.44192635 0.19637870
## 337   0.135964912 0.2836364 1.0000000 0.2836364 0.44192635 0.19637870
## 367   0.135964912 0.2836364 1.0000000 0.2836364 0.44192635 0.19637870
## 468   0.135964912 0.2836364 1.0000000 0.2836364 0.44192635 0.19637870
## 529   0.135964912 0.2836364 1.0000000 0.2836364 0.44192635 0.19637870
## 610   0.135964912 0.2836364 1.0000000 0.2836364 0.44192635 0.19637870
## 766   0.135964912 0.2836364 1.0000000 0.2836364 0.44192635 0.19637870
## 893   0.135964912 0.2836364 1.0000000 0.2836364 0.44192635 0.19637870
## 1008  0.135964912 0.2836364 1.0000000 0.2836364 0.44192635 0.19637870
## 1367  0.135964912 0.2836364 1.0000000 0.2836364 0.44192635 0.19637870
## 334   0.128947368 0.2819957 1.0000000 0.2819957 0.43993232 0.19068980
## 602   0.128947368 0.2819957 1.0000000 0.2819957 0.43993232 0.19068980
## 767   0.128947368 0.2819957 1.0000000 0.2819957 0.43993232 0.19068980
## 772   0.128947368 0.2819957 1.0000000 0.2819957 0.43993232 0.19068980
## 919   0.128947368 0.2819957 1.0000000 0.2819957 0.43993232 0.19068980
## 935   0.128947368 0.2819957 1.0000000 0.2819957 0.43993232 0.19068980
## 1078  0.128947368 0.2819957 1.0000000 0.2819957 0.43993232 0.19068980
## 1375  0.128947368 0.2819957 1.0000000 0.2819957 0.43993232 0.19068980
## 251   0.119298246 0.2797704 1.0000000 0.2797704 0.43721973 0.18269133
## 364   0.119298246 0.2797704 1.0000000 0.2797704 0.43721973 0.18269133
## 513   0.119298246 0.2797704 1.0000000 0.2797704 0.43721973 0.18269133
## 574   0.119298246 0.2797704 1.0000000 0.2797704 0.43721973 0.18269133
## 575   0.119298246 0.2797704 1.0000000 0.2797704 0.43721973 0.18269133
## 715   0.119298246 0.2797704 1.0000000 0.2797704 0.43721973 0.18269133
## 819   0.119298246 0.2797704 1.0000000 0.2797704 0.43721973 0.18269133
## 858   0.119298246 0.2797704 1.0000000 0.2797704 0.43721973 0.18269133
## 1133  0.119298246 0.2797704 1.0000000 0.2797704 0.43721973 0.18269133
## 1366  0.119298246 0.2797704 1.0000000 0.2797704 0.43721973 0.18269133
## 1490  0.119298246 0.2797704 1.0000000 0.2797704 0.43721973 0.18269133
## 135   0.114035088 0.2785714 1.0000000 0.2785714 0.43575419 0.17823276
## 794   0.114035088 0.2785714 1.0000000 0.2785714 0.43575419 0.17823276
## 989   0.114035088 0.2785714 1.0000000 0.2785714 0.43575419 0.17823276
## 996   0.114035088 0.2785714 1.0000000 0.2785714 0.43575419 0.17823276
## 1334  0.114035088 0.2785714 1.0000000 0.2785714 0.43575419 0.17823276
## 1494  0.114035088 0.2785714 1.0000000 0.2785714 0.43575419 0.17823276
## 229   0.108771930 0.2773826 1.0000000 0.2773826 0.43429844 0.17369930
## 672   0.108771930 0.2773826 1.0000000 0.2773826 0.43429844 0.17369930
## 847   0.108771930 0.2773826 1.0000000 0.2773826 0.43429844 0.17369930
## 1079  0.108771930 0.2773826 1.0000000 0.2773826 0.43429844 0.17369930
## 1429  0.108771930 0.2773826 1.0000000 0.2773826 0.43429844 0.17369930
## 1450  0.108771930 0.2773826 1.0000000 0.2773826 0.43429844 0.17369930
## 64    0.101754386 0.2758133 1.0000000 0.2758133 0.43237251 0.16752675
## 471   0.101754386 0.2758133 1.0000000 0.2758133 0.43237251 0.16752675
## 499   0.101754386 0.2758133 1.0000000 0.2758133 0.43237251 0.16752675
## 531   0.101754386 0.2758133 1.0000000 0.2758133 0.43237251 0.16752675
## 1058  0.101754386 0.2758133 1.0000000 0.2758133 0.43237251 0.16752675
## 1185  0.101754386 0.2758133 1.0000000 0.2758133 0.43237251 0.16752675
## 1189  0.101754386 0.2758133 1.0000000 0.2758133 0.43237251 0.16752675
## 1478  0.101754386 0.2758133 1.0000000 0.2758133 0.43237251 0.16752675
## 20    0.095614035 0.2744546 1.0000000 0.2744546 0.43070127 0.16199294
## 422   0.095614035 0.2744546 1.0000000 0.2744546 0.43070127 0.16199294
## 774   0.095614035 0.2744546 1.0000000 0.2744546 0.43070127 0.16199294
## 815   0.095614035 0.2744546 1.0000000 0.2744546 0.43070127 0.16199294
## 867   0.095614035 0.2744546 1.0000000 0.2744546 0.43070127 0.16199294
## 1095  0.095614035 0.2744546 1.0000000 0.2744546 0.43070127 0.16199294
## 1154  0.095614035 0.2744546 1.0000000 0.2744546 0.43070127 0.16199294
## 73    0.088596491 0.2729181 1.0000000 0.2729181 0.42880704 0.15549787
## 511   0.088596491 0.2729181 1.0000000 0.2729181 0.42880704 0.15549787
## 553   0.088596491 0.2729181 1.0000000 0.2729181 0.42880704 0.15549787
## 752   0.088596491 0.2729181 1.0000000 0.2729181 0.42880704 0.15549787
## 782   0.088596491 0.2729181 1.0000000 0.2729181 0.42880704 0.15549787
## 793   0.088596491 0.2729181 1.0000000 0.2729181 0.42880704 0.15549787
## 1108  0.088596491 0.2729181 1.0000000 0.2729181 0.42880704 0.15549787
## 1446  0.088596491 0.2729181 1.0000000 0.2729181 0.42880704 0.15549787
## 9     0.082456140 0.2715877 1.0000000 0.2715877 0.42716320 0.14964651
## 438   0.082456140 0.2715877 1.0000000 0.2715877 0.42716320 0.14964651
## 604   0.082456140 0.2715877 1.0000000 0.2715877 0.42716320 0.14964651
## 773   0.082456140 0.2715877 1.0000000 0.2715877 0.42716320 0.14964651
## 1294  0.082456140 0.2715877 1.0000000 0.2715877 0.42716320 0.14964651
## 1301  0.082456140 0.2715877 1.0000000 0.2715877 0.42716320 0.14964651
## 1492  0.082456140 0.2715877 1.0000000 0.2715877 0.42716320 0.14964651
## 192   0.074561404 0.2698962 1.0000000 0.2698962 0.42506812 0.14185852
## 451   0.074561404 0.2698962 1.0000000 0.2698962 0.42506812 0.14185852
## 459   0.074561404 0.2698962 1.0000000 0.2698962 0.42506812 0.14185852
## 505   0.074561404 0.2698962 1.0000000 0.2698962 0.42506812 0.14185852
## 647   0.074561404 0.2698962 1.0000000 0.2698962 0.42506812 0.14185852
## 692   0.074561404 0.2698962 1.0000000 0.2698962 0.42506812 0.14185852
## 835   0.074561404 0.2698962 1.0000000 0.2698962 0.42506812 0.14185852
## 839   0.074561404 0.2698962 1.0000000 0.2698962 0.42506812 0.14185852
## 1241  0.074561404 0.2698962 1.0000000 0.2698962 0.42506812 0.14185852
## 31    0.061403509 0.2671233 1.0000000 0.2671233 0.42162162 0.12807149
## 39    0.061403509 0.2671233 1.0000000 0.2671233 0.42162162 0.12807149
## 231   0.061403509 0.2671233 1.0000000 0.2671233 0.42162162 0.12807149
## 357   0.061403509 0.2671233 1.0000000 0.2671233 0.42162162 0.12807149
## 382   0.061403509 0.2671233 1.0000000 0.2671233 0.42162162 0.12807149
## 450   0.061403509 0.2671233 1.0000000 0.2671233 0.42162162 0.12807149
## 627   0.061403509 0.2671233 1.0000000 0.2671233 0.42162162 0.12807149
## 722   0.061403509 0.2671233 1.0000000 0.2671233 0.42162162 0.12807149
## 776   0.061403509 0.2671233 1.0000000 0.2671233 0.42162162 0.12807149
## 889   0.061403509 0.2671233 1.0000000 0.2671233 0.42162162 0.12807149
## 1019  0.061403509 0.2671233 1.0000000 0.2671233 0.42162162 0.12807149
## 1036  0.061403509 0.2671233 1.0000000 0.2671233 0.42162162 0.12807149
## 1112  0.061403509 0.2671233 1.0000000 0.2671233 0.42162162 0.12807149
## 1158  0.061403509 0.2671233 1.0000000 0.2671233 0.42162162 0.12807149
## 1224  0.061403509 0.2671233 1.0000000 0.2671233 0.42162162 0.12807149
## 34    0.049122807 0.2645862 1.0000000 0.2645862 0.41845494 0.11400533
## 191   0.049122807 0.2645862 1.0000000 0.2645862 0.41845494 0.11400533
## 329   0.049122807 0.2645862 1.0000000 0.2645862 0.41845494 0.11400533
## 405   0.049122807 0.2645862 1.0000000 0.2645862 0.41845494 0.11400533
## 607   0.049122807 0.2645862 1.0000000 0.2645862 0.41845494 0.11400533
## 713   0.049122807 0.2645862 1.0000000 0.2645862 0.41845494 0.11400533
## 1013  0.049122807 0.2645862 1.0000000 0.2645862 0.41845494 0.11400533
## 1016  0.049122807 0.2645862 1.0000000 0.2645862 0.41845494 0.11400533
## 1092  0.049122807 0.2645862 1.0000000 0.2645862 0.41845494 0.11400533
## 1256  0.049122807 0.2645862 1.0000000 0.2645862 0.41845494 0.11400533
## 1350  0.049122807 0.2645862 1.0000000 0.2645862 0.41845494 0.11400533
## 1373  0.049122807 0.2645862 1.0000000 0.2645862 0.41845494 0.11400533
## 1522  0.049122807 0.2645862 1.0000000 0.2645862 0.41845494 0.11400533
## 1525  0.049122807 0.2645862 1.0000000 0.2645862 0.41845494 0.11400533
## 48    0.039473684 0.2626263 1.0000000 0.2626263 0.41600000 0.10181761
## 130   0.039473684 0.2626263 1.0000000 0.2626263 0.41600000 0.10181761
## 252   0.039473684 0.2626263 1.0000000 0.2626263 0.41600000 0.10181761
## 769   0.039473684 0.2626263 1.0000000 0.2626263 0.41600000 0.10181761
## 783   0.039473684 0.2626263 1.0000000 0.2626263 0.41600000 0.10181761
## 784   0.039473684 0.2626263 1.0000000 0.2626263 0.41600000 0.10181761
## 840   0.039473684 0.2626263 1.0000000 0.2626263 0.41600000 0.10181761
## 851   0.039473684 0.2626263 1.0000000 0.2626263 0.41600000 0.10181761
## 947   0.039473684 0.2626263 1.0000000 0.2626263 0.41600000 0.10181761
## 1305  0.039473684 0.2626263 1.0000000 0.2626263 0.41600000 0.10181761
## 1503  0.039473684 0.2626263 1.0000000 0.2626263 0.41600000 0.10181761
## 110   0.030701754 0.2608696 1.0000000 0.2608696 0.41379310 0.08949387
## 262   0.030701754 0.2608696 1.0000000 0.2608696 0.41379310 0.08949387
## 305   0.030701754 0.2608696 1.0000000 0.2608696 0.41379310 0.08949387
## 552   0.030701754 0.2608696 1.0000000 0.2608696 0.41379310 0.08949387
## 985   0.030701754 0.2608696 1.0000000 0.2608696 0.41379310 0.08949387
## 1060  0.030701754 0.2608696 1.0000000 0.2608696 0.41379310 0.08949387
## 1138  0.030701754 0.2608696 1.0000000 0.2608696 0.41379310 0.08949387
## 1308  0.030701754 0.2608696 1.0000000 0.2608696 0.41379310 0.08949387
## 1409  0.030701754 0.2608696 1.0000000 0.2608696 0.41379310 0.08949387
## 1451  0.030701754 0.2608696 1.0000000 0.2608696 0.41379310 0.08949387
## 97    0.024561404 0.2596538 1.0000000 0.2596538 0.41226216 0.07985901
## 502   0.024561404 0.2596538 1.0000000 0.2596538 0.41226216 0.07985901
## 509   0.024561404 0.2596538 1.0000000 0.2596538 0.41226216 0.07985901
## 551   0.024561404 0.2596538 1.0000000 0.2596538 0.41226216 0.07985901
## 890   0.024561404 0.2596538 1.0000000 0.2596538 0.41226216 0.07985901
## 1222  0.024561404 0.2596538 1.0000000 0.2596538 0.41226216 0.07985901
## 1477  0.024561404 0.2596538 1.0000000 0.2596538 0.41226216 0.07985901
## 139   0.021929825 0.2591362 1.0000000 0.2591362 0.41160950 0.07538443
## 1088  0.021929825 0.2591362 1.0000000 0.2591362 0.41160950 0.07538443
## 1235  0.021929825 0.2591362 1.0000000 0.2591362 0.41160950 0.07538443
## 53    0.014912281 0.2577660 1.0000000 0.2577660 0.40987914 0.06199903
## 225   0.014912281 0.2577660 1.0000000 0.2577660 0.40987914 0.06199903
## 755   0.014912281 0.2577660 1.0000000 0.2577660 0.40987914 0.06199903
## 1037  0.014912281 0.2577660 1.0000000 0.2577660 0.40987914 0.06199903
## 1132  0.014912281 0.2577660 1.0000000 0.2577660 0.40987914 0.06199903
## 1187  0.014912281 0.2577660 1.0000000 0.2577660 0.40987914 0.06199903
## 1374  0.014912281 0.2577660 1.0000000 0.2577660 0.40987914 0.06199903
## 1430  0.014912281 0.2577660 1.0000000 0.2577660 0.40987914 0.06199903
## 328   0.008771930 0.2565789 1.0000000 0.2565789 0.40837696 0.04744146
## 549   0.008771930 0.2565789 1.0000000 0.2565789 0.40837696 0.04744146
## 603   0.008771930 0.2565789 1.0000000 0.2565789 0.40837696 0.04744146
## 1083  0.008771930 0.2565789 1.0000000 0.2565789 0.40837696 0.04744146
## 1206  0.008771930 0.2565789 1.0000000 0.2565789 0.40837696 0.04744146
## 1227  0.008771930 0.2565789 1.0000000 0.2565789 0.40837696 0.04744146
## 1296  0.008771930 0.2565789 1.0000000 0.2565789 0.40837696 0.04744146
## 159   0.005263158 0.2559055 1.0000000 0.2559055 0.40752351 0.03669974
## 504   0.005263158 0.2559055 1.0000000 0.2559055 0.40752351 0.03669974
## 1135  0.005263158 0.2559055 1.0000000 0.2559055 0.40752351 0.03669974
## 1236  0.005263158 0.2559055 1.0000000 0.2559055 0.40752351 0.03669974
## 260   0.000000000 0.2549020 0.0000000       NaN 0.40625000        NaN
## 379   0.000000000 0.2549020 0.0000000       NaN 0.40625000        NaN
## 427   0.000000000 0.2549020 0.0000000       NaN 0.40625000        NaN
## 478   0.000000000 0.2549020 0.0000000       NaN 0.40625000        NaN
## 550   0.000000000 0.2549020 0.0000000       NaN 0.40625000        NaN
## 1254  0.000000000 0.2549020 0.0000000       NaN 0.40625000        NaN
##              FPR           PG           RG
## 409  0.000000000 1.0000000000 0.0000000000
## 636  0.000000000 1.0000000000 0.0000000000
## 718  0.000877193 0.3684210526 0.0000000000
## 969  0.000877193 0.4983552632 0.0000000000
## 1122 0.000877193 0.5852631579 0.0000000000
## 469  0.000877193 0.6469298246 0.0000000000
## 1388 0.000877193 0.6928034372 0.0000000000
## 144  0.000877193 0.7563352827 0.0000000000
## 284  0.000877193 0.7563352827 0.0000000000
## 634  0.000877193 0.7981731187 0.0000000000
## 1105 0.000877193 0.7981731187 0.0000000000
## 896  0.000877193 0.8277795079 0.0000000000
## 1316 0.000877193 0.8277795079 0.0000000000
## 138  0.001754386 0.7115789474 0.0000000000
## 348  0.001754386 0.7115789474 0.0000000000
## 492  0.001754386 0.7430340557 0.0000000000
## 970  0.001754386 0.7430340557 0.0000000000
## 665  0.001754386 0.7563352827 0.0000000000
## 1455 0.001754386 0.7683335763 0.0000000000
## 1031 0.001754386 0.7792105263 0.0000000000
## 146  0.001754386 0.7891156463 0.0000000000
## 113  0.001754386 0.8141447368 0.0000000000
## 391  0.001754386 0.8141447368 0.0000000000
## 1396 0.001754386 0.8141447368 0.0000000000
## 735  0.001754386 0.8277795079 0.0000000000
## 1457 0.001754386 0.8277795079 0.0000000000
## 666  0.001754386 0.8338748105 0.0000000000
## 394  0.001754386 0.8544827208 0.0000000000
## 490  0.001754386 0.8544827208 0.0000000000
## 827  0.001754386 0.8544827208 0.0000000000
## 1117 0.001754386 0.8544827208 0.0000000000
## 633  0.001754386 0.8588610197 0.0000000000
## 162  0.002631579 0.7981731187 0.0000000000
## 487  0.002631579 0.8037925697 0.0000000000
## 703  0.003508772 0.7498603652 0.0000000000
## 1413 0.004385965 0.7005969786 0.0000000000
## 874  0.004385965 0.7150641493 0.0000000000
## 1460 0.004385965 0.7150641493 0.0000000000
## 903  0.004385965 0.7217896813 0.0000000000
## 609  0.006140351 0.6392498200 0.0000000000
## 1439 0.006140351 0.6392498200 0.0000000000
## 836  0.007017544 0.6107141841 0.0000000000
## 1319 0.007017544 0.6107141841 0.0000000000
## 390  0.007894737 0.5931374988 0.0000000000
## 900  0.007894737 0.5931374988 0.0000000000
## 1052 0.007894737 0.5931374988 0.0000000000
## 169  0.007894737 0.6007243096 0.0000000000
## 71   0.007894737 0.6080386513 0.0000000000
## 832  0.007894737 0.6219052632 0.0000000000
## 976  0.007894737 0.6219052632 0.0000000000
## 828  0.007894737 0.6284829721 0.0000000000
## 1317 0.007894737 0.6348392245 0.0000000000
## 112  0.007894737 0.6526837756 0.0000000000
## 1172 0.007894737 0.6526837756 0.0000000000
## 1365 0.007894737 0.6526837756 0.0000000000
## 973  0.007894737 0.6582555720 0.0000000000
## 388  0.007894737 0.6688857250 0.0000000000
## 812  0.007894737 0.6688857250 0.0000000000
## 730  0.008771930 0.6469298246 0.0000000000
## 938  0.008771930 0.6469298246 0.0000000000
## 151  0.008771930 0.6521167202 0.0000000000
## 1176 0.008771930 0.6571553754 0.0000000000
## 975  0.008771930 0.6620519553 0.0000000000
## 540  0.009649123 0.6420803488 0.0000000000
## 732  0.009649123 0.6420803488 0.0000000000
## 78   0.009649123 0.6562500000 0.0000000000
## 879  0.009649123 0.6562500000 0.0000000000
## 1045 0.009649123 0.6562500000 0.0000000000
## 1197 0.010526316 0.6332703214 0.0000000000
## 1274 0.011403509 0.6113265306 0.0000000000
## 449  0.013157895 0.5754116009 0.0000000000
## 592  0.013157895 0.5754116009 0.0000000000
## 1438 0.013157895 0.5754116009 0.0000000000
## 255  0.014035088 0.5563415478 0.0000000000
## 320  0.014035088 0.5664090975 0.0000000000
## 417  0.014035088 0.5664090975 0.0000000000
## 605  0.014912281 0.5483306850 0.0000000000
## 600  0.015789474 0.5309872314 0.0000000000
## 731  0.015789474 0.5360308318 0.0000000000
## 107  0.016666667 0.5293723974 0.0000000000
## 115  0.016666667 0.5293723974 0.0000000000
## 632  0.016666667 0.5293723974 0.0000000000
## 344  0.017543860 0.5184389545 0.0000000000
## 642  0.017543860 0.5184389545 0.0000000000
## 325  0.018421053 0.5081160514 0.0000000000
## 415  0.018421053 0.5081160514 0.0000000000
## 145  0.018421053 0.5175178067 0.0000000000
## 878  0.018421053 0.5175178067 0.0000000000
## 467  0.020175439 0.4937745886 0.0000000000
## 760  0.020175439 0.4937745886 0.0000000000
## 856  0.020175439 0.4937745886 0.0000000000
## 686  0.021052632 0.4849663180 0.0000000000
## 885  0.021052632 0.4849663180 0.0000000000
## 149  0.021929825 0.4855149884 0.0000000000
## 583  0.021929825 0.4855149884 0.0000000000
## 687  0.021929825 0.4855149884 0.0000000000
## 1362 0.021929825 0.4855149884 0.0000000000
## 1359 0.021929825 0.4941439918 0.0000000000
## 1397 0.021929825 0.4941439918 0.0000000000
## 594  0.021929825 0.4983552632 0.0000000000
## 857  0.021929825 0.5024997549 0.0000000000
## 173  0.023684211 0.4944582611 0.0000000000
## 281  0.023684211 0.4944582611 0.0000000000
## 316  0.023684211 0.4944582611 0.0000000000
## 413  0.023684211 0.4944582611 0.0000000000
## 1004 0.023684211 0.4944582611 0.0000000000
## 1251 0.023684211 0.4944582611 0.0000000000
## 877  0.023684211 0.4983552632 0.0000000000
## 59   0.024561404 0.4945984391 0.0000000000
## 801  0.024561404 0.4945984391 0.0000000000
## 1219 0.024561404 0.4945984391 0.0000000000
## 175  0.025438596 0.4983552632 0.0000000000
## 372  0.025438596 0.4983552632 0.0000000000
## 537  0.025438596 0.4983552632 0.0000000000
## 1147 0.025438596 0.4983552632 0.0000000000
## 1177 0.025438596 0.4983552632 0.0000000000
## 245  0.026315789 0.4983552632 0.0000000000
## 728  0.026315789 0.4983552632 0.0000000000
## 1173 0.026315789 0.4983552632 0.0000000000
## 1344 0.026315789 0.4983552632 0.0000000000
## 168  0.026315789 0.5085945083 0.0000000000
## 247  0.026315789 0.5085945083 0.0000000000
## 447  0.026315789 0.5085945083 0.0000000000
## 411  0.026315789 0.5152000000 0.0000000000
## 886  0.026315789 0.5152000000 0.0000000000
## 147  0.026315789 0.5216364117 0.0000000000
## 587  0.026315789 0.5216364117 0.0000000000
## 315  0.026315789 0.5309872314 0.0005190491
## 519  0.026315789 0.5309872314 0.0005190491
## 1386 0.026315789 0.5309872314 0.0005190491
## 1145 0.026315789 0.5340260505 0.0014154469
## 802  0.027192982 0.5270090541 0.0023294924
## 881  0.027192982 0.5270090541 0.0023294924
## 516  0.028070175 0.5232198142 0.0042105263
## 579  0.028070175 0.5232198142 0.0042105263
## 1070 0.028070175 0.5232198142 0.0042105263
## 805  0.028070175 0.5261615598 0.0051775148
## 1287 0.028070175 0.5290684177 0.0061621509
## 267  0.028947368 0.5225013426 0.0071644348
## 630  0.028947368 0.5225013426 0.0071644348
## 442  0.029824561 0.5132750391 0.0071644348
## 1385 0.029824561 0.5161569864 0.0081843662
## 733  0.029824561 0.5190062054 0.0092219454
## 243  0.029824561 0.5246085487 0.0113500467
## 314  0.029824561 0.5246085487 0.0113500467
## 800  0.029824561 0.5273626927 0.0124405689
## 140  0.030701754 0.5211821441 0.0135487387
## 623  0.030701754 0.5211821441 0.0135487387
## 1069 0.030701754 0.5265789474 0.0158180214
## 1384 0.030701754 0.5265789474 0.0158180214
## 341  0.031578947 0.5205751567 0.0169791342
## 702  0.031578947 0.5205751567 0.0169791342
## 1231 0.032456140 0.5120972366 0.0169791342
## 806  0.032456140 0.5147590789 0.0181578947
## 654  0.032456140 0.5199996107 0.0205683588
## 1104 0.032456140 0.5199996107 0.0205683588
## 488  0.032456140 0.5225791161 0.0218000623
## 47   0.033333333 0.5194531250 0.0243164123
## 1146 0.033333333 0.5194531250 0.0243164123
## 1464 0.033333333 0.5194531250 0.0243164123
## 1175 0.033333333 0.5219706030 0.0256010589
## 273  0.035087719 0.5085945083 0.0269033531
## 515  0.035087719 0.5085945083 0.0269033531
## 578  0.035087719 0.5085945083 0.0269033531
## 170  0.035964912 0.5058870598 0.0295608845
## 736  0.035964912 0.5058870598 0.0295608845
## 1065 0.035964912 0.5058870598 0.0295608845
## 663  0.035964912 0.5083495569 0.0309161217
## 11   0.036842105 0.5008301714 0.0309161217
## 1042 0.037719298 0.4959150724 0.0322890065
## 1393 0.037719298 0.4959150724 0.0322890065
## 1456 0.038596491 0.4911360395 0.0336795391
## 1496 0.038596491 0.4911360395 0.0336795391
## 7    0.039473684 0.4864876477 0.0350877193
## 1028 0.039473684 0.4864876477 0.0350877193
## 1103 0.039473684 0.4889039732 0.0365135472
## 452  0.041228070 0.4751501671 0.0365135472
## 846  0.041228070 0.4751501671 0.0365135472
## 311  0.041228070 0.4823241370 0.0408969168
## 899  0.041228070 0.4823241370 0.0408969168
## 1463 0.041228070 0.4823241370 0.0408969168
## 617  0.042105263 0.4756544785 0.0408969168
## 378  0.042982456 0.4691014017 0.0408969168
## 1030 0.042982456 0.4714666140 0.0423933354
## 1436 0.043859649 0.4650340241 0.0423933354
## 1364 0.043859649 0.4673859467 0.0439074016
## 804  0.043859649 0.4697182918 0.0454391155
## 27   0.045614035 0.4595305438 0.0469884771
## 1068 0.045614035 0.4595305438 0.0469884771
## 1443 0.045614035 0.4595305438 0.0469884771
## 137  0.047368421 0.4497612794 0.0485554863
## 375  0.047368421 0.4497612794 0.0485554863
## 674  0.047368421 0.4497612794 0.0485554863
## 1100 0.048245614 0.4484582904 0.0517424478
## 1203 0.048245614 0.4484582904 0.0517424478
## 1321 0.048245614 0.4484582904 0.0517424478
## 894  0.049122807 0.4449438564 0.0533624001
## 1040 0.049122807 0.4449438564 0.0533624001
## 256  0.050000000 0.4415125000 0.0550000000
## 638  0.050000000 0.4415125000 0.0550000000
## 172  0.051754386 0.4370994709 0.0600186858
## 283  0.051754386 0.4370994709 0.0600186858
## 855  0.051754386 0.4370994709 0.0600186858
## 1002 0.051754386 0.4370994709 0.0600186858
## 1066 0.051754386 0.4370994709 0.0600186858
## 164  0.052631579 0.4403866810 0.0669573342
## 345  0.052631579 0.4403866810 0.0669573342
## 1454 0.052631579 0.4403866810 0.0669573342
## 1458 0.052631579 0.4403866810 0.0669573342
## 1467 0.052631579 0.4403866810 0.0669573342
## 142  0.053508772 0.4435319234 0.0741783453
## 389  0.053508772 0.4435319234 0.0741783453
## 807  0.053508772 0.4435319234 0.0741783453
## 909  0.053508772 0.4435319234 0.0741783453
## 1466 0.053508772 0.4435319234 0.0741783453
## 831  0.053508772 0.4456103124 0.0760277172
## 1067 0.053508772 0.4476741132 0.0778947368
## 70   0.054385965 0.4465441496 0.0816817191
## 727  0.054385965 0.4465441496 0.0816817191
## 1421 0.054385965 0.4465441496 0.0816817191
## 307  0.056140351 0.4383707061 0.0836016817
## 555  0.056140351 0.4383707061 0.0836016817
## 953  0.056140351 0.4383707061 0.0836016817
## 25   0.057017544 0.4333813398 0.0836016817
## 318  0.057894737 0.4344838898 0.0894674556
## 870  0.057894737 0.4344838898 0.0894674556
## 1043 0.057894737 0.4344838898 0.0894674556
## 1392 0.057894737 0.4344838898 0.0894674556
## 310  0.058771930 0.4316232216 0.0914580089
## 1519 0.058771930 0.4316232216 0.0914580089
## 624  0.061403509 0.4194724154 0.0934662099
## 891  0.061403509 0.4194724154 0.0934662099
## 1337 0.061403509 0.4194724154 0.0934662099
## 1394 0.061403509 0.4194724154 0.0934662099
## 980  0.063157895 0.4103781430 0.0934662099
## 982  0.063157895 0.4103781430 0.0934662099
## 788  0.064912281 0.4015290327 0.0934662099
## 932  0.064912281 0.4015290327 0.0934662099
## 966  0.064912281 0.4034924938 0.0954920585
## 230  0.067543860 0.3906589822 0.0954920585
## 771  0.067543860 0.3906589822 0.0954920585
## 1511 0.067543860 0.3906589822 0.0954920585
## 28   0.070175439 0.3783292049 0.0954920585
## 52   0.070175439 0.3783292049 0.0954920585
## 129  0.070175439 0.3783292049 0.0954920585
## 888  0.071052632 0.3743268418 0.0954920585
## 419  0.073684211 0.3645709474 0.0975355549
## 764  0.073684211 0.3645709474 0.0975355549
## 1055 0.073684211 0.3645709474 0.0975355549
## 1513 0.073684211 0.3645709474 0.0975355549
## 780  0.074561404 0.3626986613 0.0995966988
## 1292 0.074561404 0.3626986613 0.0995966988
## 414  0.075438596 0.3608603007 0.1016754905
## 678  0.075438596 0.3608603007 0.1016754905
## 250  0.076315789 0.3590549670 0.1037719298
## 734  0.076315789 0.3590549670 0.1037719298
## 198  0.079824561 0.3446710526 0.1037719298
## 498  0.079824561 0.3446710526 0.1037719298
## 705  0.079824561 0.3446710526 0.1037719298
## 848  0.079824561 0.3446710526 0.1037719298
## 563  0.079824561 0.3465543897 0.1058860168
## 631  0.080701754 0.3449377611 0.1080177515
## 757  0.080701754 0.3449377611 0.1080177515
## 880  0.082456140 0.3399406708 0.1101671338
## 1261 0.082456140 0.3399406708 0.1101671338
## 1444 0.082456140 0.3399406708 0.1101671338
## 143  0.083333333 0.3384175206 0.1123341638
## 1440 0.083333333 0.3384175206 0.1123341638
## 61   0.085087719 0.3317987871 0.1123341638
## 443  0.085087719 0.3317987871 0.1123341638
## 232  0.086842105 0.3289736576 0.1167211668
## 972  0.086842105 0.3289736576 0.1167211668
## 1050 0.086842105 0.3289736576 0.1167211668
## 1271 0.086842105 0.3289736576 0.1167211668
## 738  0.086842105 0.3325757387 0.1211787605
## 1213 0.086842105 0.3325757387 0.1211787605
## 100  0.087719298 0.3311749692 0.1234340289
## 1371 0.087719298 0.3311749692 0.1234340289
## 1119 0.087719298 0.3347207304 0.1279975086
## 1468 0.087719298 0.3347207304 0.1279975086
## 795  0.089473684 0.3301958151 0.1303057199
## 841  0.089473684 0.3301958151 0.1303057199
## 897  0.089473684 0.3301958151 0.1303057199
## 303  0.091228070 0.3275267714 0.1349750856
## 658  0.091228070 0.3275267714 0.1349750856
## 739  0.091228070 0.3275267714 0.1349750856
## 765  0.091228070 0.3275267714 0.1349750856
## 248  0.092105263 0.3296451885 0.1421114917
## 1101 0.092105263 0.3296451885 0.1421114917
## 1291 0.092105263 0.3296451885 0.1421114917
## 1481 0.092105263 0.3296451885 0.1421114917
## 99   0.092982456 0.3333865961 0.1518737673
## 221  0.092982456 0.3333865961 0.1518737673
## 930  0.092982456 0.3333865961 0.1518737673
## 1032 0.092982456 0.3333865961 0.1518737673
## 1311 0.092982456 0.3333865961 0.1518737673
## 1020 0.093859649 0.3337299300 0.1568607910
## 1282 0.093859649 0.3337299300 0.1568607910
## 1314 0.093859649 0.3337299300 0.1568607910
## 826  0.094736842 0.3340666037 0.1619184055
## 901  0.094736842 0.3340666037 0.1619184055
## 1208 0.094736842 0.3340666037 0.1619184055
## 296  0.095614035 0.3343968090 0.1670466106
## 591  0.095614035 0.3343968090 0.1670466106
## 737  0.095614035 0.3343968090 0.1670466106
## 72   0.096491228 0.3331131253 0.1696371847
## 1283 0.096491228 0.3331131253 0.1696371847
## 566  0.097368421 0.3302431292 0.1696371847
## 1202 0.098245614 0.3274032475 0.1696371847
## 637  0.099122807 0.3293737922 0.1775147929
## 1034 0.099122807 0.3293737922 0.1775147929
## 1290 0.099122807 0.3293737922 0.1775147929
## 1389 0.099122807 0.3293737922 0.1775147929
## 1033 0.100000000 0.3281632653 0.1801759576
## 1462 0.100000000 0.3281632653 0.1801759576
## 907  0.101754386 0.3242335101 0.1828547701
## 1121 0.101754386 0.3242335101 0.1828547701
## 1419 0.101754386 0.3242335101 0.1828547701
## 557  0.102631579 0.3246341901 0.1882653379
## 1170 0.102631579 0.3246341901 0.1882653379
## 1360 0.102631579 0.3246341901 0.1882653379
## 1356 0.102631579 0.3261795963 0.1909970933
## 258  0.103508772 0.3250276755 0.1937464964
## 661  0.103508772 0.3250276755 0.1937464964
## 30   0.105263158 0.3227715332 0.1992982456
## 41   0.105263158 0.3227715332 0.1992982456
## 240  0.105263158 0.3227715332 0.1992982456
## 1212 0.105263158 0.3227715332 0.1992982456
## 136  0.107017544 0.3190733929 0.2021005917
## 332  0.107017544 0.3190733929 0.2021005917
## 1377 0.107017544 0.3190733929 0.2021005917
## 543  0.108771930 0.3154611043 0.2049205855
## 562  0.108771930 0.3154611043 0.2049205855
## 681  0.108771930 0.3154611043 0.2049205855
## 497  0.109649123 0.3144307476 0.2077582269
## 1390 0.109649123 0.3144307476 0.2077582269
## 338  0.109649123 0.3188684767 0.2163770373
## 580  0.109649123 0.3188684767 0.2163770373
## 664  0.109649123 0.3188684767 0.2163770373
## 45   0.111403509 0.3138798528 0.2163770373
## 158  0.111403509 0.3138798528 0.2163770373
## 997  0.112280702 0.3114210580 0.2163770373
## 554  0.114912281 0.3056367174 0.2192852694
## 668  0.114912281 0.3056367174 0.2192852694
## 823  0.114912281 0.3056367174 0.2192852694
## 1131 0.114912281 0.3056367174 0.2192852694
## 1422 0.115789474 0.3032668042 0.2192852694
## 227  0.116666667 0.3009190448 0.2192852694
## 197  0.119298246 0.2940060722 0.2192852694
## 676  0.119298246 0.2940060722 0.2192852694
## 1402 0.119298246 0.2940060722 0.2192852694
## 957  0.119298246 0.2954409526 0.2222111492
## 808  0.120175439 0.2946036630 0.2251546766
## 1404 0.120175439 0.2946036630 0.2251546766
## 1169 0.121052632 0.2937768689 0.2281158518
## 1382 0.121052632 0.2937768689 0.2281158518
## 205  0.121929825 0.2915481982 0.2281158518
## 1472 0.122807018 0.2893398097 0.2281158518
## 242  0.123684211 0.2885581140 0.2310946746
## 295  0.123684211 0.2885581140 0.2310946746
## 512  0.124561404 0.2863867721 0.2310946746
## 590  0.126315789 0.2821025311 0.2310946746
## 696  0.126315789 0.2821025311 0.2310946746
## 496  0.127192982 0.2799891874 0.2310946746
## 729  0.127192982 0.2813799370 0.2340911450
## 744  0.128070175 0.2792825924 0.2340911450
## 46   0.132456140 0.2690714479 0.2340911450
## 353  0.132456140 0.2690714479 0.2340911450
## 474  0.132456140 0.2690714479 0.2340911450
## 691  0.132456140 0.2690714479 0.2340911450
## 697  0.132456140 0.2690714479 0.2340911450
## 68   0.133333333 0.2698104035 0.2401370290
## 312  0.133333333 0.2698104035 0.2401370290
## 1381 0.133333333 0.2698104035 0.2401370290
## 571  0.135087719 0.2658733113 0.2401370290
## 1299 0.135087719 0.2658733113 0.2401370290
## 213  0.136842105 0.2646916460 0.2462535036
## 339  0.136842105 0.2646916460 0.2462535036
## 398  0.136842105 0.2646916460 0.2462535036
## 1143 0.136842105 0.2646916460 0.2462535036
## 81   0.140350877 0.2584530985 0.2493382124
## 725  0.140350877 0.2584530985 0.2493382124
## 785  0.140350877 0.2584530985 0.2493382124
## 959  0.140350877 0.2584530985 0.2493382124
## 1518 0.140350877 0.2584530985 0.2493382124
## 639  0.145614035 0.2475609685 0.2493382124
## 704  0.145614035 0.2475609685 0.2493382124
## 1056 0.145614035 0.2475609685 0.2493382124
## 1244 0.145614035 0.2475609685 0.2493382124
## 1298 0.145614035 0.2475609685 0.2493382124
## 1424 0.145614035 0.2475609685 0.2493382124
## 15   0.146491228 0.2483968382 0.2555605730
## 387  0.146491228 0.2483968382 0.2555605730
## 657  0.146491228 0.2483968382 0.2555605730
## 167  0.147368421 0.2492213409 0.2618535243
## 958  0.147368421 0.2492213409 0.2618535243
## 1057 0.147368421 0.2492213409 0.2618535243
## 547  0.150000000 0.2440281250 0.2618535243
## 685  0.150000000 0.2440281250 0.2618535243
## 775  0.150000000 0.2440281250 0.2618535243
## 181  0.152631579 0.2402273513 0.2650264715
## 254  0.152631579 0.2402273513 0.2650264715
## 577  0.152631579 0.2402273513 0.2650264715
## 675  0.152631579 0.2402273513 0.2650264715
## 174  0.152631579 0.2440061118 0.2746511990
## 655  0.152631579 0.2440061118 0.2746511990
## 876  0.152631579 0.2440061118 0.2746511990
## 277  0.157017544 0.2357716078 0.2746511990
## 290  0.157017544 0.2357716078 0.2746511990
## 424  0.157017544 0.2357716078 0.2746511990
## 762  0.157017544 0.2357716078 0.2746511990
## 1353 0.157017544 0.2357716078 0.2746511990
## 21   0.157894737 0.2353994627 0.2778947368
## 824  0.157894737 0.2353994627 0.2778947368
## 69   0.159649123 0.2322162829 0.2778947368
## 199  0.159649123 0.2322162829 0.2778947368
## 189  0.162280702 0.2299675821 0.2844347555
## 777  0.162280702 0.2299675821 0.2844347555
## 1044 0.162280702 0.2299675821 0.2844347555
## 1073 0.162280702 0.2299675821 0.2844347555
## 1258 0.162280702 0.2299675821 0.2844347555
## 79   0.165789474 0.2238712074 0.2844347555
## 433  0.165789474 0.2238712074 0.2844347555
## 853  0.165789474 0.2238712074 0.2844347555
## 1401 0.165789474 0.2238712074 0.2844347555
## 556  0.167543860 0.2232794809 0.2910453649
## 951  0.167543860 0.2232794809 0.2910453649
## 1126 0.167543860 0.2232794809 0.2910453649
## 1289 0.167543860 0.2232794809 0.2910453649
## 185  0.170175439 0.2200606295 0.2943771411
## 359  0.170175439 0.2200606295 0.2943771411
## 629  0.170175439 0.2200606295 0.2943771411
## 669  0.170175439 0.2200606295 0.2943771411
## 506  0.171929825 0.2183495098 0.2977265649
## 569  0.171929825 0.2183495098 0.2977265649
## 895  0.171929825 0.2183495098 0.2977265649
## 63   0.174561404 0.2140973357 0.2977265649
## 280  0.174561404 0.2140973357 0.2977265649
## 779  0.174561404 0.2140973357 0.2977265649
## 712  0.176315789 0.2113154607 0.2977265649
## 740  0.176315789 0.2113154607 0.2977265649
## 709  0.178947368 0.2083663014 0.3010936365
## 803  0.178947368 0.2083663014 0.3010936365
## 1329 0.178947368 0.2083663014 0.3010936365
## 1347 0.178947368 0.2083663014 0.3010936365
## 595  0.178947368 0.2117913366 0.3113007370
## 954  0.178947368 0.2117913366 0.3113007370
## 1383 0.178947368 0.2117913366 0.3113007370
## 349  0.180701754 0.2090884990 0.3113007370
## 1024 0.180701754 0.2090884990 0.3113007370
## 830  0.181578947 0.2088805485 0.3147383993
## 1267 0.181578947 0.2088805485 0.3147383993
## 500  0.183333333 0.2062309573 0.3147383993
## 1348 0.183333333 0.2062309573 0.3147383993
## 910  0.185964912 0.2023282497 0.3147383993
## 1268 0.185964912 0.2023282497 0.3147383993
## 1453 0.185964912 0.2023282497 0.3147383993
## 309  0.185964912 0.2034406586 0.3181937091
## 397  0.187719298 0.2008800119 0.3181937091
## 710  0.187719298 0.2008800119 0.3181937091
## 40   0.188596491 0.2018153155 0.3251572719
## 228  0.188596491 0.2018153155 0.3251572719
## 968  0.188596491 0.2018153155 0.3251572719
## 114  0.191228070 0.2002304001 0.3321914253
## 268  0.191228070 0.2002304001 0.3321914253
## 679  0.191228070 0.2002304001 0.3321914253
## 1027 0.191228070 0.2002304001 0.3321914253
## 1447 0.191228070 0.2002304001 0.3321914253
## 89   0.192105263 0.1989886245 0.3321914253
## 201  0.195614035 0.1941081915 0.3321914253
## 453  0.195614035 0.1941081915 0.3321914253
## 1153 0.195614035 0.1941081915 0.3321914253
## 1171 0.195614035 0.1941081915 0.3321914253
## 13   0.196491228 0.1950464396 0.3392961694
## 319  0.196491228 0.1950464396 0.3392961694
## 904  0.196491228 0.1950464396 0.3392961694
## 200  0.197368421 0.1949136828 0.3428750130
## 585  0.197368421 0.1949136828 0.3428750130
## 44   0.200877193 0.1923014273 0.3500856431
## 238  0.200877193 0.1923014273 0.3500856431
## 279  0.200877193 0.1923014273 0.3500856431
## 321  0.200877193 0.1923014273 0.3500856431
## 408  0.200877193 0.1923014273 0.3500856431
## 1407 0.200877193 0.1923014273 0.3500856431
## 435  0.207017544 0.1843243775 0.3500856431
## 436  0.207017544 0.1843243775 0.3500856431
## 706  0.207017544 0.1843243775 0.3500856431
## 778  0.207017544 0.1843243775 0.3500856431
## 1139 0.207017544 0.1843243775 0.3500856431
## 1182 0.207017544 0.1843243775 0.3500856431
## 1487 0.207017544 0.1843243775 0.3500856431
## 936  0.208771930 0.1821140247 0.3500856431
## 1193 0.208771930 0.1821140247 0.3500856431
## 272  0.211403509 0.1788539000 0.3500856431
## 1128 0.211403509 0.1788539000 0.3500856431
## 1232 0.211403509 0.1788539000 0.3500856431
## 156  0.212280702 0.1787950789 0.3537174297
## 1049 0.212280702 0.1787950789 0.3537174297
## 1418 0.213157895 0.1777274621 0.3537174297
## 965  0.215789474 0.1745669868 0.3537174297
## 1106 0.215789474 0.1745669868 0.3537174297
## 1486 0.215789474 0.1745669868 0.3537174297
## 564  0.216666667 0.1745264078 0.3573668639
## 1336 0.216666667 0.1745264078 0.3573668639
## 340  0.218421053 0.1734551532 0.3610339458
## 707  0.218421053 0.1734551532 0.3610339458
## 1123 0.218421053 0.1734551532 0.3610339458
## 748  0.220175439 0.1714133702 0.3610339458
## 1192 0.220175439 0.1714133702 0.3610339458
## 106  0.222807018 0.1693788522 0.3647186754
## 208  0.222807018 0.1693788522 0.3647186754
## 271  0.222807018 0.1693788522 0.3647186754
## 420  0.222807018 0.1693788522 0.3647186754
## 105  0.224561404 0.1673976911 0.3647186754
## 514  0.224561404 0.1673976911 0.3647186754
## 745  0.226315789 0.1664091879 0.3684210526
## 1047 0.226315789 0.1664091879 0.3684210526
## 1265 0.226315789 0.1664091879 0.3684210526
## 521  0.227192982 0.1664017245 0.3721410775
## 1262 0.227192982 0.1664017245 0.3721410775
## 1098 0.228070175 0.1663943185 0.3758787501
## 1324 0.228070175 0.1663943185 0.3758787501
## 640  0.230701754 0.1635225206 0.3758787501
## 1087 0.230701754 0.1635225206 0.3758787501
## 1159 0.230701754 0.1635225206 0.3758787501
## 123  0.232456140 0.1644736842 0.3871976539
## 343  0.232456140 0.1644736842 0.3871976539
## 955  0.232456140 0.1644736842 0.3871976539
## 974  0.232456140 0.1644736842 0.3871976539
## 999  0.232456140 0.1644736842 0.3871976539
## 49   0.236842105 0.1598300932 0.3871976539
## 60   0.236842105 0.1598300932 0.3871976539
## 525  0.236842105 0.1598300932 0.3871976539
## 643  0.236842105 0.1598300932 0.3871976539
## 1520 0.236842105 0.1598300932 0.3871976539
## 708  0.237719298 0.1589187128 0.3871976539
## 535  0.239473684 0.1571129294 0.3871976539
## 690  0.239473684 0.1571129294 0.3871976539
## 358  0.241228070 0.1553294888 0.3871976539
## 508  0.241228070 0.1553294888 0.3871976539
## 393  0.241228070 0.1571667088 0.3948318281
## 1355 0.241228070 0.1571667088 0.3948318281
## 74   0.242982456 0.1563083030 0.3986753867
## 77   0.242982456 0.1563083030 0.3986753867
## 991  0.242982456 0.1563083030 0.3986753867
## 171  0.244736842 0.1563671339 0.4064154469
## 465  0.244736842 0.1563671339 0.4064154469
## 983  0.244736842 0.1563671339 0.4064154469
## 1245 0.244736842 0.1563671339 0.4064154469
## 445  0.245614035 0.1554936929 0.4064154469
## 55   0.247368421 0.1537626853 0.4064154469
## 275  0.247368421 0.1537626853 0.4064154469
## 470  0.248245614 0.1529050382 0.4064154469
## 620  0.252631579 0.1486937948 0.4064154469
## 1006 0.252631579 0.1486937948 0.4064154469
## 1086 0.252631579 0.1486937948 0.4064154469
## 1140 0.252631579 0.1486937948 0.4064154469
## 1501 0.252631579 0.1486937948 0.4064154469
## 85   0.253508772 0.1496302740 0.4142260978
## 798  0.253508772 0.1496302740 0.4142260978
## 1114 0.253508772 0.1496302740 0.4142260978
## 786  0.254385965 0.1488036399 0.4142260978
## 376  0.257017544 0.1472247815 0.4181578947
## 677  0.257017544 0.1472247815 0.4181578947
## 814  0.257017544 0.1472247815 0.4181578947
## 1246 0.257017544 0.1472247815 0.4181578947
## 51   0.261403509 0.1440853497 0.4221073394
## 542  0.261403509 0.1440853497 0.4221073394
## 742  0.261403509 0.1440853497 0.4221073394
## 884  0.261403509 0.1440853497 0.4221073394
## 1326 0.261403509 0.1440853497 0.4221073394
## 1338 0.261403509 0.1440853497 0.4221073394
## 98   0.264912281 0.1418114910 0.4260744316
## 184  0.264912281 0.1418114910 0.4260744316
## 214  0.264912281 0.1418114910 0.4260744316
## 926  0.264912281 0.1418114910 0.4260744316
## 1357 0.264912281 0.1418114910 0.4260744316
## 103  0.268421053 0.1404325344 0.4340615592
## 717  0.268421053 0.1404325344 0.4340615592
## 898  0.268421053 0.1404325344 0.4340615592
## 939  0.268421053 0.1404325344 0.4340615592
## 1210 0.268421053 0.1404325344 0.4340615592
## 1400 0.268421053 0.1404325344 0.4340615592
## 66   0.273684211 0.1359470736 0.4340615592
## 253  0.273684211 0.1359470736 0.4340615592
## 949  0.273684211 0.1359470736 0.4340615592
## 1354 0.273684211 0.1359470736 0.4340615592
## 1398 0.273684211 0.1359470736 0.4340615592
## 1415 0.273684211 0.1359470736 0.4340615592
## 237  0.274561404 0.1360396146 0.4380815945
## 567  0.274561404 0.1360396146 0.4380815945
## 22   0.280701754 0.1310117219 0.4380815945
## 204  0.280701754 0.1310117219 0.4380815945
## 292  0.280701754 0.1310117219 0.4380815945
## 455  0.280701754 0.1310117219 0.4380815945
## 641  0.280701754 0.1310117219 0.4380815945
## 849  0.280701754 0.1310117219 0.4380815945
## 1380 0.280701754 0.1310117219 0.4380815945
## 313  0.282456140 0.1312231363 0.4461746081
## 964  0.282456140 0.1312231363 0.4461746081
## 1470 0.282456140 0.1312231363 0.4461746081
## 1512 0.282456140 0.1312231363 0.4461746081
## 223  0.285087719 0.1299388863 0.4502475864
## 246  0.285087719 0.1299388863 0.4502475864
## 1259 0.285087719 0.1299388863 0.4502475864
## 1260 0.285087719 0.1299388863 0.4502475864
## 758  0.285964912 0.1292501954 0.4502475864
## 873  0.286842105 0.1301538211 0.4584464860
## 1250 0.286842105 0.1301538211 0.4584464860
## 1465 0.286842105 0.1301538211 0.4584464860
## 38   0.292105263 0.1276628334 0.4667159763
## 94   0.292105263 0.1276628334 0.4667159763
## 323  0.292105263 0.1276628334 0.4667159763
## 494  0.292105263 0.1276628334 0.4667159763
## 913  0.292105263 0.1276628334 0.4667159763
## 916  0.292105263 0.1276628334 0.4667159763
## 1003 0.292105263 0.1276628334 0.4667159763
## 1459 0.292105263 0.1276628334 0.4667159763
## 716  0.294736842 0.1264488907 0.4708771930
## 902  0.294736842 0.1264488907 0.4708771930
## 963  0.294736842 0.1264488907 0.4708771930
## 1269 0.294736842 0.1264488907 0.4708771930
## 101  0.299122807 0.1239608712 0.4750560573
## 667  0.299122807 0.1239608712 0.4750560573
## 1007 0.299122807 0.1239608712 0.4750560573
## 1021 0.299122807 0.1239608712 0.4750560573
## 1107 0.299122807 0.1239608712 0.4750560573
## 1199 0.299122807 0.1239608712 0.4750560573
## 998  0.303508772 0.1207851056 0.4750560573
## 1111 0.303508772 0.1207851056 0.4750560573
## 1220 0.303508772 0.1207851056 0.4750560573
## 1303 0.303508772 0.1207851056 0.4750560573
## 1471 0.303508772 0.1207851056 0.4750560573
## 355  0.304385965 0.1209135555 0.4792525693
## 829  0.304385965 0.1209135555 0.4792525693
## 241  0.308771930 0.1185728125 0.4834667290
## 747  0.308771930 0.1185728125 0.4834667290
## 914  0.308771930 0.1185728125 0.4834667290
## 1264 0.308771930 0.1185728125 0.4834667290
## 1293 0.308771930 0.1185728125 0.4834667290
## 1297 0.308771930 0.1185728125 0.4834667290
## 274  0.309649123 0.1179638381 0.4834667290
## 534  0.312280702 0.1161561014 0.4834667290
## 612  0.312280702 0.1161561014 0.4834667290
## 1163 0.312280702 0.1161561014 0.4834667290
## 211  0.314912281 0.1151075640 0.4876985363
## 956  0.314912281 0.1151075640 0.4876985363
## 962  0.314912281 0.1151075640 0.4876985363
## 1022 0.314912281 0.1151075640 0.4876985363
## 374  0.318421053 0.1142176109 0.4962150939
## 456  0.318421053 0.1142176109 0.4962150939
## 546  0.318421053 0.1142176109 0.4962150939
## 597  0.318421053 0.1142176109 0.4962150939
## 711  0.318421053 0.1142176109 0.4962150939
## 1144 0.318421053 0.1142176109 0.4962150939
## 650  0.321052632 0.1124863183 0.4962150939
## 860  0.321052632 0.1124863183 0.4962150939
## 1343 0.321052632 0.1124863183 0.4962150939
## 235  0.323684211 0.1114940656 0.5004998443
## 444  0.323684211 0.1114940656 0.5004998443
## 977  0.323684211 0.1114940656 0.5004998443
## 1127 0.323684211 0.1114940656 0.5004998443
## 2    0.328070175 0.1094057551 0.5048022423
## 12   0.328070175 0.1094057551 0.5048022423
## 370  0.328070175 0.1094057551 0.5048022423
## 698  0.328070175 0.1094057551 0.5048022423
## 1363 0.328070175 0.1094057551 0.5048022423
## 1448 0.328070175 0.1094057551 0.5048022423
## 19   0.330701754 0.1077594818 0.5048022423
## 1223 0.330701754 0.1077594818 0.5048022423
## 1437 0.330701754 0.1077594818 0.5048022423
## 87   0.332456140 0.1073706757 0.5091222880
## 196  0.332456140 0.1073706757 0.5091222880
## 659  0.332456140 0.1073706757 0.5091222880
## 282  0.336842105 0.1047007008 0.5091222880
## 475  0.336842105 0.1047007008 0.5091222880
## 864  0.336842105 0.1047007008 0.5091222880
## 1077 0.336842105 0.1047007008 0.5091222880
## 1243 0.336842105 0.1047007008 0.5091222880
## 17   0.342105263 0.1015840790 0.5091222880
## 95   0.342105263 0.1015840790 0.5091222880
## 644  0.342105263 0.1015840790 0.5091222880
## 928  0.342105263 0.1015840790 0.5091222880
## 1051 0.342105263 0.1015840790 0.5091222880
## 1085 0.342105263 0.1015840790 0.5091222880
## 601  0.344736842 0.1000604768 0.5091222880
## 653  0.344736842 0.1000604768 0.5091222880
## 1229 0.344736842 0.1000604768 0.5091222880
## 23   0.347368421 0.1012253370 0.5265789474
## 102  0.347368421 0.1012253370 0.5265789474
## 127  0.347368421 0.1012253370 0.5265789474
## 392  0.347368421 0.1012253370 0.5265789474
## 485  0.347368421 0.1012253370 0.5265789474
## 1174 0.347368421 0.1012253370 0.5265789474
## 1330 0.347368421 0.1012253370 0.5265789474
## 626  0.349122807 0.1002241405 0.5265789474
## 1094 0.349122807 0.1002241405 0.5265789474
## 210  0.351754386 0.0987406552 0.5265789474
## 428  0.351754386 0.0987406552 0.5265789474
## 1097 0.351754386 0.0987406552 0.5265789474
## 220  0.355263158 0.0974482381 0.5309872314
## 817  0.355263158 0.0974482381 0.5309872314
## 971  0.355263158 0.0974482381 0.5309872314
## 1403 0.355263158 0.0974482381 0.5309872314
## 1473 0.355263158 0.0974482381 0.5309872314
## 593  0.356140351 0.0976168487 0.5354131631
## 1149 0.356140351 0.0976168487 0.5354131631
## 457  0.357017544 0.0977846262 0.5398567424
## 582  0.357017544 0.0977846262 0.5398567424
## 270  0.358771930 0.0968265257 0.5398567424
## 352  0.358771930 0.0968265257 0.5398567424
## 10   0.361403509 0.0973295531 0.5532933666
## 35   0.361403509 0.0973295531 0.5532933666
## 1046 0.361403509 0.0973295531 0.5532933666
## 1074 0.361403509 0.0973295531 0.5532933666
## 1325 0.361403509 0.0973295531 0.5532933666
## 1387 0.361403509 0.0973295531 0.5532933666
## 269  0.363157895 0.0963851595 0.5532933666
## 327  0.363157895 0.0963851595 0.5532933666
## 759  0.365789474 0.0956187321 0.5578075366
## 882  0.365789474 0.0956187321 0.5578075366
## 933  0.365789474 0.0956187321 0.5578075366
## 1168 0.365789474 0.0956187321 0.5578075366
## 1474 0.366666667 0.0951550624 0.5578075366
## 249  0.373684211 0.0921436871 0.5623393543
## 330  0.373684211 0.0921436871 0.5623393543
## 495  0.373684211 0.0921436871 0.5623393543
## 517  0.373684211 0.0921436871 0.5623393543
## 613  0.373684211 0.0921436871 0.5623393543
## 680  0.373684211 0.0921436871 0.5623393543
## 1179 0.373684211 0.0921436871 0.5623393543
## 1215 0.373684211 0.0921436871 0.5623393543
## 1530 0.373684211 0.0921436871 0.5623393543
## 179  0.376315789 0.0914281694 0.5668888197
## 834  0.376315789 0.0914281694 0.5668888197
## 1071 0.376315789 0.0914281694 0.5668888197
## 1442 0.376315789 0.0914281694 0.5668888197
## 18   0.381578947 0.0894195157 0.5714559327
## 276  0.381578947 0.0894195157 0.5714559327
## 868  0.381578947 0.0894195157 0.5714559327
## 1009 0.381578947 0.0894195157 0.5714559327
## 1242 0.381578947 0.0894195157 0.5714559327
## 1323 0.381578947 0.0894195157 0.5714559327
## 1499 0.381578947 0.0894195157 0.5714559327
## 322  0.385087719 0.0883115979 0.5760406934
## 714  0.385087719 0.0883115979 0.5760406934
## 923  0.385087719 0.0883115979 0.5760406934
## 1248 0.385087719 0.0883115979 0.5760406934
## 1340 0.385087719 0.0883115979 0.5760406934
## 222  0.387719298 0.0882408161 0.5852631579
## 233  0.387719298 0.0882408161 0.5852631579
## 844  0.387719298 0.0882408161 0.5852631579
## 1284 0.387719298 0.0882408161 0.5852631579
## 1395 0.387719298 0.0882408161 0.5852631579
## 190  0.392982456 0.0857442776 0.5852631579
## 533  0.392982456 0.0857442776 0.5852631579
## 1000 0.392982456 0.0857442776 0.5852631579
## 1063 0.392982456 0.0857442776 0.5852631579
## 1064 0.392982456 0.0857442776 0.5852631579
## 1129 0.392982456 0.0857442776 0.5852631579
## 431  0.395614035 0.0845213060 0.5852631579
## 850  0.395614035 0.0845213060 0.5852631579
## 1137 0.395614035 0.0845213060 0.5852631579
## 263  0.400000000 0.0825195313 0.5852631579
## 619  0.400000000 0.0825195313 0.5852631579
## 790  0.400000000 0.0825195313 0.5852631579
## 915  0.400000000 0.0825195313 0.5852631579
## 922  0.400000000 0.0825195313 0.5852631579
## 148  0.400877193 0.0838566754 0.5992292121
## 418  0.400877193 0.0838566754 0.5992292121
## 544  0.400877193 0.0838566754 0.5992292121
## 1099 0.400877193 0.0838566754 0.5992292121
## 177  0.403508772 0.0826704639 0.5992292121
## 182  0.403508772 0.0826704639 0.5992292121
## 943  0.403508772 0.0826704639 0.5992292121
## 194  0.407017544 0.0816817191 0.6039198588
## 224  0.407017544 0.0816817191 0.6039198588
## 386  0.407017544 0.0816817191 0.6039198588
## 526  0.407017544 0.0816817191 0.6039198588
## 1434 0.407017544 0.0816817191 0.6039198588
## 381  0.410526316 0.0818371941 0.6180976850
## 448  0.410526316 0.0818371941 0.6180976850
## 635  0.410526316 0.0818371941 0.6180976850
## 660  0.410526316 0.0818371941 0.6180976850
## 866  0.410526316 0.0818371941 0.6180976850
## 906  0.410526316 0.0818371941 0.6180976850
## 1041 0.410526316 0.0818371941 0.6180976850
## 56   0.413157895 0.0818120650 0.6276378075
## 656  0.413157895 0.0818120650 0.6276378075
## 1160 0.413157895 0.0818120650 0.6276378075
## 1345 0.413157895 0.0818120650 0.6276378075
## 1461 0.413157895 0.0818120650 0.6276378075
## 1216 0.414912281 0.0816096132 0.6324343403
## 1304 0.414912281 0.0816096132 0.6324343403
## 1410 0.414912281 0.0816096132 0.6324343403
## 150  0.414912281 0.0827250310 0.6420803488
## 1029 0.414912281 0.0827250310 0.6420803488
## 662  0.416666667 0.0825195313 0.6469298246
## 763  0.416666667 0.0825195313 0.6469298246
## 1426 0.416666667 0.0825195313 0.6469298246
## 50   0.420175439 0.0810124798 0.6469298246
## 950  0.420175439 0.0810124798 0.6469298246
## 988  0.420175439 0.0810124798 0.6469298246
## 1475 0.420175439 0.0810124798 0.6469298246
## 333  0.424561404 0.0807986503 0.6615841379
## 565  0.424561404 0.0807986503 0.6615841379
## 741  0.424561404 0.0807986503 0.6615841379
## 937  0.424561404 0.0807986503 0.6615841379
## 952  0.424561404 0.0807986503 0.6615841379
## 1125 0.424561404 0.0807986503 0.6615841379
## 1217 0.424561404 0.0807986503 0.6615841379
## 1286 0.424561404 0.0807986503 0.6615841379
## 524  0.428070175 0.0793343653 0.6615841379
## 925  0.428070175 0.0793343653 0.6615841379
## 1369 0.428070175 0.0793343653 0.6615841379
## 1435 0.428070175 0.0793343653 0.6615841379
## 384  0.432456140 0.0775386223 0.6615841379
## 548  0.432456140 0.0775386223 0.6615841379
## 1084 0.432456140 0.0775386223 0.6615841379
## 1157 0.432456140 0.0775386223 0.6615841379
## 1226 0.432456140 0.0775386223 0.6615841379
## 1295 0.433333333 0.0771840091 0.6615841379
## 278  0.438596491 0.0750874245 0.6615841379
## 843  0.438596491 0.0750874245 0.6615841379
## 942  0.438596491 0.0750874245 0.6615841379
## 992  0.438596491 0.0750874245 0.6615841379
## 1093 0.438596491 0.0750874245 0.6615841379
## 1277 0.438596491 0.0750874245 0.6615841379
## 84   0.444736842 0.0732252235 0.6665042043
## 432  0.444736842 0.0732252235 0.6665042043
## 646  0.444736842 0.0732252235 0.6665042043
## 978  0.444736842 0.0732252235 0.6665042043
## 1035 0.444736842 0.0732252235 0.6665042043
## 1142 0.444736842 0.0732252235 0.6665042043
## 1164 0.444736842 0.0732252235 0.6665042043
## 1180 0.444736842 0.0732252235 0.6665042043
## 43   0.446491228 0.0741039499 0.6813702896
## 317  0.446491228 0.0741039499 0.6813702896
## 342  0.446491228 0.0741039499 0.6813702896
## 1156 0.446491228 0.0741039499 0.6813702896
## 1214 0.446491228 0.0741039499 0.6813702896
## 126  0.449122807 0.0741261382 0.6913692515
## 265  0.449122807 0.0741261382 0.6913692515
## 520  0.449122807 0.0741261382 0.6913692515
## 584  0.449122807 0.0741261382 0.6913692515
## 1528 0.449122807 0.0741261382 0.6913692515
## 285  0.450877193 0.0739703396 0.6963952040
## 1181 0.450877193 0.0739703396 0.6963952040
## 1288 0.450877193 0.0739703396 0.6963952040
## 124  0.453508772 0.0739930868 0.7065000519
## 202  0.453508772 0.0739930868 0.7065000519
## 581  0.453508772 0.0739930868 0.7065000519
## 825  0.453508772 0.0739930868 0.7065000519
## 1349 0.453508772 0.0739930868 0.7065000519
## 306  0.458771930 0.0725309066 0.7115789474
## 346  0.458771930 0.0725309066 0.7115789474
## 377  0.458771930 0.0725309066 0.7115789474
## 464  0.458771930 0.0725309066 0.7115789474
## 503  0.458771930 0.0725309066 0.7115789474
## 948  0.458771930 0.0725309066 0.7115789474
## 1368 0.458771930 0.0725309066 0.7115789474
## 331  0.464035088 0.0715992316 0.7217896813
## 410  0.464035088 0.0715992316 0.7217896813
## 538  0.464035088 0.0715992316 0.7217896813
## 572  0.464035088 0.0715992316 0.7217896813
## 1118 0.464035088 0.0715992316 0.7217896813
## 1167 0.464035088 0.0715992316 0.7217896813
## 1204 0.464035088 0.0715992316 0.7217896813
## 1482 0.464035088 0.0715992316 0.7217896813
## 1431 0.464912281 0.0712810564 0.7217896813
## 76   0.469298246 0.0706890522 0.7320710059
## 261  0.469298246 0.0706890522 0.7320710059
## 308  0.469298246 0.0706890522 0.7320710059
## 811  0.469298246 0.0706890522 0.7320710059
## 1275 0.469298246 0.0706890522 0.7320710059
## 1408 0.469298246 0.0706890522 0.7320710059
## 1493 0.469298246 0.0706890522 0.7320710059
## 491  0.471052632 0.0710414192 0.7424229212
## 589  0.471052632 0.0710414192 0.7424229212
## 781  0.471052632 0.0710414192 0.7424229212
## 908  0.471052632 0.0710414192 0.7424229212
## 486  0.471929825 0.0717043435 0.7528454272
## 799  0.471929825 0.0717043435 0.7528454272
## 1507 0.471929825 0.0717043435 0.7528454272
## 4    0.478947368 0.0697136151 0.7580831517
## 297  0.478947368 0.0697136151 0.7580831517
## 423  0.478947368 0.0697136151 0.7580831517
## 568  0.478947368 0.0697136151 0.7580831517
## 682  0.478947368 0.0697136151 0.7580831517
## 1102 0.478947368 0.0697136151 0.7580831517
## 1191 0.478947368 0.0697136151 0.7580831517
## 1270 0.478947368 0.0697136151 0.7580831517
## 1502 0.478947368 0.0697136151 0.7580831517
## 266  0.485087719 0.0676075049 0.7580831517
## 293  0.485087719 0.0676075049 0.7580831517
## 446  0.485087719 0.0676075049 0.7580831517
## 545  0.485087719 0.0676075049 0.7580831517
## 695  0.485087719 0.0676075049 0.7580831517
## 1237 0.485087719 0.0676075049 0.7580831517
## 1335 0.485087719 0.0676075049 0.7580831517
## 416  0.486842105 0.0679586805 0.7686115437
## 1183 0.486842105 0.0679586805 0.7686115437
## 1233 0.486842105 0.0679586805 0.7686115437
## 1320 0.486842105 0.0679586805 0.7686115437
## 863  0.487719298 0.0676628019 0.7686115437
## 481  0.490350877 0.0677175081 0.7792105263
## 791  0.490350877 0.0677175081 0.7792105263
## 1048 0.490350877 0.0677175081 0.7792105263
## 1054 0.490350877 0.0677175081 0.7792105263
## 1120 0.490350877 0.0677175081 0.7792105263
## 489  0.492982456 0.0673062457 0.7845364892
## 720  0.492982456 0.0673062457 0.7845364892
## 981  0.492982456 0.0673062457 0.7845364892
## 1425 0.492982456 0.0673062457 0.7845364892
## 80   0.496491228 0.0666109998 0.7898800997
## 178  0.496491228 0.0666109998 0.7898800997
## 400  0.496491228 0.0666109998 0.7898800997
## 990  0.496491228 0.0666109998 0.7898800997
## 1115 0.496491228 0.0666109998 0.7898800997
## 29   0.500877193 0.0651848223 0.7898800997
## 109  0.500877193 0.0651848223 0.7898800997
## 257  0.500877193 0.0651848223 0.7898800997
## 335  0.500877193 0.0651848223 0.7898800997
## 1198 0.500877193 0.0651848223 0.7898800997
## 373  0.506140351 0.0635086807 0.7898800997
## 437  0.506140351 0.0635086807 0.7898800997
## 522  0.506140351 0.0635086807 0.7898800997
## 1012 0.506140351 0.0635086807 0.7898800997
## 1130 0.506140351 0.0635086807 0.7898800997
## 1162 0.506140351 0.0635086807 0.7898800997
## 193  0.508771930 0.0631335686 0.7952413578
## 541  0.508771930 0.0631335686 0.7952413578
## 1318 0.508771930 0.0631335686 0.7952413578
## 1399 0.508771930 0.0631335686 0.7952413578
## 1211 0.510526316 0.0625875895 0.7952413578
## 1485 0.510526316 0.0625875895 0.7952413578
## 152  0.514912281 0.0612403999 0.7952413578
## 354  0.514912281 0.0612403999 0.7952413578
## 536  0.514912281 0.0612403999 0.7952413578
## 929  0.514912281 0.0612403999 0.7952413578
## 1483 0.514912281 0.0612403999 0.7952413578
## 37   0.520175439 0.0596566035 0.7952413578
## 96   0.520175439 0.0596566035 0.7952413578
## 461  0.520175439 0.0596566035 0.7952413578
## 993  0.520175439 0.0596566035 0.7952413578
## 1166 0.520175439 0.0596566035 0.7952413578
## 1230 0.520175439 0.0596566035 0.7952413578
## 689  0.521929825 0.0595720951 0.8006202637
## 810  0.521929825 0.0595720951 0.8006202637
## 1165 0.521929825 0.0595720951 0.8006202637
## 209  0.526315789 0.0582841248 0.8006202637
## 979  0.526315789 0.0582841248 0.8006202637
## 1190 0.526315789 0.0582841248 0.8006202637
## 1252 0.526315789 0.0582841248 0.8006202637
## 1441 0.526315789 0.0582841248 0.8006202637
## 286  0.530701754 0.0570196854 0.8006202637
## 302  0.530701754 0.0570196854 0.8006202637
## 493  0.530701754 0.0570196854 0.8006202637
## 671  0.530701754 0.0570196854 0.8006202637
## 792  0.530701754 0.0570196854 0.8006202637
## 528  0.535087719 0.0562011293 0.8060168172
## 833  0.535087719 0.0562011293 0.8060168172
## 941  0.535087719 0.0562011293 0.8060168172
## 1072 0.535087719 0.0562011293 0.8060168172
## 1405 0.535087719 0.0562011293 0.8060168172
## 1417 0.535087719 0.0562011293 0.8060168172
## 32   0.541228070 0.0544948921 0.8060168172
## 58   0.541228070 0.0544948921 0.8060168172
## 226  0.541228070 0.0544948921 0.8060168172
## 458  0.541228070 0.0544948921 0.8060168172
## 746  0.541228070 0.0544948921 0.8060168172
## 1266 0.541228070 0.0544948921 0.8060168172
## 1414 0.541228070 0.0544948921 0.8060168172
## 54   0.546491228 0.0538913097 0.8168628672
## 560  0.546491228 0.0538913097 0.8168628672
## 561  0.546491228 0.0538913097 0.8168628672
## 573  0.546491228 0.0538913097 0.8168628672
## 753  0.546491228 0.0538913097 0.8168628672
## 789  0.546491228 0.0538913097 0.8168628672
## 845  0.546491228 0.0538913097 0.8168628672
## 1025 0.546491228 0.0538913097 0.8168628672
## 356  0.548245614 0.0538299082 0.8223123637
## 1178 0.548245614 0.0538299082 0.8223123637
## 1358 0.548245614 0.0538299082 0.8223123637
## 351  0.552631579 0.0526591829 0.8223123637
## 507  0.552631579 0.0526591829 0.8223123637
## 726  0.552631579 0.0526591829 0.8223123637
## 838  0.552631579 0.0526591829 0.8223123637
## 1255 0.552631579 0.0526591829 0.8223123637
## 1    0.560526316 0.0506039238 0.8223123637
## 108  0.560526316 0.0506039238 0.8223123637
## 816  0.560526316 0.0506039238 0.8223123637
## 924  0.560526316 0.0506039238 0.8223123637
## 986  0.560526316 0.0506039238 0.8223123637
## 1091 0.560526316 0.0506039238 0.8223123637
## 1161 0.560526316 0.0506039238 0.8223123637
## 1306 0.560526316 0.0506039238 0.8223123637
## 1489 0.560526316 0.0506039238 0.8223123637
## 57   0.566666667 0.0490502710 0.8223123637
## 125  0.566666667 0.0490502710 0.8223123637
## 368  0.566666667 0.0490502710 0.8223123637
## 1081 0.566666667 0.0490502710 0.8223123637
## 1155 0.566666667 0.0490502710 0.8223123637
## 1372 0.566666667 0.0490502710 0.8223123637
## 1506 0.566666667 0.0490502710 0.8223123637
## 371  0.570175439 0.0481796015 0.8223123637
## 700  0.570175439 0.0481796015 0.8223123637
## 1134 0.570175439 0.0481796015 0.8223123637
## 1188 0.570175439 0.0481796015 0.8223123637
## 83   0.574561404 0.0471083897 0.8223123637
## 648  0.574561404 0.0471083897 0.8223123637
## 822  0.574561404 0.0471083897 0.8223123637
## 940  0.574561404 0.0471083897 0.8223123637
## 1416 0.574561404 0.0471083897 0.8223123637
## 36   0.578947368 0.0468237531 0.8332642998
## 558  0.578947368 0.0468237531 0.8332642998
## 599  0.578947368 0.0468237531 0.8332642998
## 984  0.578947368 0.0468237531 0.8332642998
## 1005 0.578947368 0.0468237531 0.8332642998
## 1218 0.578947368 0.0468237531 0.8332642998
## 1497 0.578947368 0.0468237531 0.8332642998
## 288  0.581578947 0.0469611432 0.8442868265
## 347  0.581578947 0.0469611432 0.8442868265
## 412  0.581578947 0.0469611432 0.8442868265
## 1148 0.581578947 0.0469611432 0.8442868265
## 1495 0.581578947 0.0469611432 0.8442868265
## 1240 0.582456140 0.0471340655 0.8498245614
## 1469 0.582456140 0.0471340655 0.8498245614
## 244  0.589473684 0.0458572091 0.8553799439
## 693  0.589473684 0.0458572091 0.8553799439
## 796  0.589473684 0.0458572091 0.8553799439
## 918  0.589473684 0.0458572091 0.8553799439
## 1281 0.589473684 0.0458572091 0.8553799439
## 1285 0.589473684 0.0458572091 0.8553799439
## 1379 0.589473684 0.0458572091 0.8553799439
## 1432 0.589473684 0.0458572091 0.8553799439
## 1523 0.589473684 0.0458572091 0.8553799439
## 128  0.592982456 0.0450445725 0.8553799439
## 203  0.592982456 0.0450445725 0.8553799439
## 462  0.592982456 0.0450445725 0.8553799439
## 1307 0.592982456 0.0450445725 0.8553799439
## 6    0.597368421 0.0440443292 0.8553799439
## 180  0.597368421 0.0440443292 0.8553799439
## 216  0.597368421 0.0440443292 0.8553799439
## 360  0.597368421 0.0440443292 0.8553799439
## 1234 0.597368421 0.0440443292 0.8553799439
## 559  0.599122807 0.0451261013 0.8777779508
## 723  0.599122807 0.0451261013 0.8777779508
## 967  0.599122807 0.0451261013 0.8777779508
## 1247 0.599122807 0.0451261013 0.8777779508
## 1322 0.599122807 0.0451261013 0.8777779508
## 1508 0.599122807 0.0451261013 0.8777779508
## 195  0.605263158 0.0437435667 0.8777779508
## 369  0.605263158 0.0437435667 0.8777779508
## 837  0.605263158 0.0437435667 0.8777779508
## 1011 0.605263158 0.0437435667 0.8777779508
## 1152 0.605263158 0.0437435667 0.8777779508
## 1423 0.605263158 0.0437435667 0.8777779508
## 1521 0.605263158 0.0437435667 0.8777779508
## 362  0.609649123 0.0427758730 0.8777779508
## 871  0.609649123 0.0427758730 0.8777779508
## 920  0.609649123 0.0427758730 0.8777779508
## 1014 0.609649123 0.0427758730 0.8777779508
## 1370 0.609649123 0.0427758730 0.8777779508
## 215  0.615789474 0.0414481582 0.8777779508
## 236  0.615789474 0.0414481582 0.8777779508
## 294  0.615789474 0.0414481582 0.8777779508
## 366  0.615789474 0.0414481582 0.8777779508
## 570  0.615789474 0.0414481582 0.8777779508
## 945  0.615789474 0.0414481582 0.8777779508
## 1253 0.615789474 0.0414481582 0.8777779508
## 33   0.618421053 0.0412433463 0.8834215717
## 476  0.618421053 0.0412433463 0.8834215717
## 523  0.618421053 0.0412433463 0.8834215717
## 588  0.618421053 0.0412433463 0.8834215717
## 117  0.621929825 0.0405032346 0.8834215717
## 301  0.621929825 0.0405032346 0.8834215717
## 598  0.621929825 0.0405032346 0.8834215717
## 1328 0.621929825 0.0405032346 0.8834215717
## 88   0.626315789 0.0402902039 0.8947617565
## 421  0.626315789 0.0402902039 0.8947617565
## 861  0.626315789 0.0402902039 0.8947617565
## 1017 0.626315789 0.0402902039 0.8947617565
## 1023 0.626315789 0.0402902039 0.8947617565
## 1312 0.626315789 0.0402902039 0.8947617565
## 1361 0.626315789 0.0402902039 0.8947617565
## 111  0.634210526 0.0386753711 0.8947617565
## 399  0.634210526 0.0386753711 0.8947617565
## 518  0.634210526 0.0386753711 0.8947617565
## 688  0.634210526 0.0386753711 0.8947617565
## 743  0.634210526 0.0386753711 0.8947617565
## 1015 0.634210526 0.0386753711 0.8947617565
## 1196 0.634210526 0.0386753711 0.8947617565
## 1228 0.634210526 0.0386753711 0.8947617565
## 1406 0.634210526 0.0386753711 0.8947617565
## 82   0.640350877 0.0374520298 0.8947617565
## 473  0.640350877 0.0374520298 0.8947617565
## 614  0.640350877 0.0374520298 0.8947617565
## 921  0.640350877 0.0374520298 0.8947617565
## 1038 0.640350877 0.0374520298 0.8947617565
## 1075 0.640350877 0.0374520298 0.8947617565
## 1327 0.640350877 0.0374520298 0.8947617565
## 694  0.641228070 0.0372795463 0.8947617565
## 539  0.644736842 0.0365952226 0.8947617565
## 842  0.644736842 0.0365952226 0.8947617565
## 854  0.644736842 0.0365952226 0.8947617565
## 1194 0.644736842 0.0365952226 0.8947617565
## 403  0.646491228 0.0362563961 0.8947617565
## 1257 0.646491228 0.0362563961 0.8947617565
## 8    0.652631579 0.0350877193 0.8947617565
## 361  0.652631579 0.0350877193 0.8947617565
## 363  0.652631579 0.0350877193 0.8947617565
## 380  0.652631579 0.0350877193 0.8947617565
## 596  0.652631579 0.0350877193 0.8947617565
## 927  0.652631579 0.0350877193 0.8947617565
## 1341 0.652631579 0.0350877193 0.8947617565
## 121  0.662280702 0.0333039524 0.8947617565
## 157  0.662280702 0.0333039524 0.8947617565
## 298  0.662280702 0.0333039524 0.8947617565
## 621  0.662280702 0.0333039524 0.8947617565
## 651  0.662280702 0.0333039524 0.8947617565
## 944  0.662280702 0.0333039524 0.8947617565
## 960  0.662280702 0.0333039524 0.8947617565
## 1110 0.662280702 0.0333039524 0.8947617565
## 1279 0.662280702 0.0333039524 0.8947617565
## 1309 0.662280702 0.0333039524 0.8947617565
## 1527 0.662280702 0.0333039524 0.8947617565
## 116  0.668421053 0.0328401679 0.9061725319
## 239  0.668421053 0.0328401679 0.9061725319
## 395  0.668421053 0.0328401679 0.9061725319
## 510  0.668421053 0.0328401679 0.9061725319
## 1018 0.668421053 0.0328401679 0.9061725319
## 1205 0.668421053 0.0328401679 0.9061725319
## 1427 0.668421053 0.0328401679 0.9061725319
## 1504 0.668421053 0.0328401679 0.9061725319
## 1514 0.668421053 0.0328401679 0.9061725319
## 206  0.671929825 0.0322163095 0.9061725319
## 259  0.671929825 0.0322163095 0.9061725319
## 426  0.671929825 0.0322163095 0.9061725319
## 527  0.671929825 0.0322163095 0.9061725319
## 62   0.676315789 0.0314475917 0.9061725319
## 454  0.676315789 0.0314475917 0.9061725319
## 892  0.676315789 0.0314475917 0.9061725319
## 1280 0.676315789 0.0314475917 0.9061725319
## 1376 0.676315789 0.0314475917 0.9061725319
## 287  0.681578947 0.0311636698 0.9176538981
## 809  0.681578947 0.0311636698 0.9176538981
## 875  0.681578947 0.0311636698 0.9176538981
## 995  0.681578947 0.0311636698 0.9176538981
## 1096 0.681578947 0.0311636698 0.9176538981
## 1186 0.681578947 0.0311636698 0.9176538981
## 1391 0.681578947 0.0311636698 0.9176538981
## 1479 0.681578947 0.0311636698 0.9176538981
## 291  0.684210526 0.0313339390 0.9292058549
## 813  0.684210526 0.0313339390 0.9292058549
## 1001 0.684210526 0.0313339390 0.9292058549
## 1116 0.684210526 0.0313339390 0.9292058549
## 1500 0.684210526 0.0313339390 0.9292058549
## 618  0.686842105 0.0308844041 0.9292058549
## 768  0.686842105 0.0308844041 0.9292058549
## 1221 0.686842105 0.0308844041 0.9292058549
## 141  0.689473684 0.0310542559 0.9408284024
## 166  0.689473684 0.0310542559 0.9408284024
## 404  0.689473684 0.0310542559 0.9408284024
## 1263 0.689473684 0.0310542559 0.9408284024
## 1352 0.689473684 0.0310542559 0.9408284024
## 1082 0.691228070 0.0307574123 0.9408284024
## 1484 0.691228070 0.0307574123 0.9408284024
## 16   0.695614035 0.0300233515 0.9408284024
## 299  0.695614035 0.0300233515 0.9408284024
## 530  0.695614035 0.0300233515 0.9408284024
## 608  0.695614035 0.0300233515 0.9408284024
## 1529 0.695614035 0.0300233515 0.9408284024
## 961  0.696491228 0.0298779054 0.9408284024
## 472  0.700000000 0.0296020045 0.9466661476
## 477  0.700000000 0.0296020045 0.9466661476
## 622  0.700000000 0.0296020045 0.9466661476
## 628  0.700000000 0.0296020045 0.9466661476
## 1207 0.700000000 0.0296020045 0.9466661476
## 92   0.704385965 0.0288876243 0.9466661476
## 336  0.704385965 0.0288876243 0.9466661476
## 946  0.704385965 0.0288876243 0.9466661476
## 1488 0.704385965 0.0288876243 0.9466661476
## 1510 0.704385965 0.0288876243 0.9466661476
## 326  0.709649123 0.0280447969 0.9466661476
## 407  0.709649123 0.0280447969 0.9466661476
## 1076 0.709649123 0.0280447969 0.9466661476
## 1239 0.709649123 0.0280447969 0.9466661476
## 1428 0.709649123 0.0280447969 0.9466661476
## 1452 0.709649123 0.0280447969 0.9466661476
## 532  0.712280702 0.0276291854 0.9466661476
## 818  0.712280702 0.0276291854 0.9466661476
## 1505 0.712280702 0.0276291854 0.9466661476
## 724  0.715789474 0.0276652050 0.9583945811
## 754  0.715789474 0.0276652050 0.9583945811
## 887  0.715789474 0.0276652050 0.9583945811
## 1059 0.715789474 0.0276652050 0.9583945811
## 1113 0.715789474 0.0276652050 0.9583945811
## 1315 0.715789474 0.0276652050 0.9583945811
## 26   0.720175439 0.0269839701 0.9583945811
## 154  0.720175439 0.0269839701 0.9583945811
## 425  0.720175439 0.0269839701 0.9583945811
## 440  0.720175439 0.0269839701 0.9583945811
## 606  0.720175439 0.0269839701 0.9583945811
## 161  0.728947368 0.0256522148 0.9583945811
## 165  0.728947368 0.0256522148 0.9583945811
## 207  0.728947368 0.0256522148 0.9583945811
## 501  0.728947368 0.0256522148 0.9583945811
## 821  0.728947368 0.0256522148 0.9583945811
## 1026 0.728947368 0.0256522148 0.9583945811
## 1053 0.728947368 0.0256522148 0.9583945811
## 1061 0.728947368 0.0256522148 0.9583945811
## 1089 0.728947368 0.0256522148 0.9583945811
## 1136 0.728947368 0.0256522148 0.9583945811
## 186  0.735087719 0.0247437167 0.9583945811
## 402  0.735087719 0.0247437167 0.9583945811
## 406  0.735087719 0.0247437167 0.9583945811
## 434  0.735087719 0.0247437167 0.9583945811
## 484  0.735087719 0.0247437167 0.9583945811
## 616  0.735087719 0.0247437167 0.9583945811
## 1141 0.735087719 0.0247437167 0.9583945811
## 104  0.743859649 0.0234786854 0.9583945811
## 155  0.743859649 0.0234786854 0.9583945811
## 187  0.743859649 0.0234786854 0.9583945811
## 721  0.743859649 0.0234786854 0.9583945811
## 852  0.743859649 0.0234786854 0.9583945811
## 1010 0.743859649 0.0234786854 0.9583945811
## 1039 0.743859649 0.0234786854 0.9583945811
## 1310 0.743859649 0.0234786854 0.9583945811
## 1351 0.743859649 0.0234786854 0.9583945811
## 1411 0.743859649 0.0234786854 0.9583945811
## 75   0.750877193 0.0227657594 0.9642852694
## 684  0.750877193 0.0227657594 0.9642852694
## 699  0.750877193 0.0227657594 0.9642852694
## 862  0.750877193 0.0227657594 0.9642852694
## 883  0.750877193 0.0227657594 0.9642852694
## 1151 0.750877193 0.0227657594 0.9642852694
## 1184 0.750877193 0.0227657594 0.9642852694
## 1276 0.750877193 0.0227657594 0.9642852694
## 1476 0.750877193 0.0227657594 0.9642852694
## 430  0.753508772 0.0229433651 0.9761195889
## 586  0.753508772 0.0229433651 0.9761195889
## 905  0.753508772 0.0229433651 0.9761195889
## 934  0.753508772 0.0229433651 0.9761195889
## 1150 0.753508772 0.0229433651 0.9761195889
## 134  0.759649123 0.0220978199 0.9761195889
## 300  0.759649123 0.0220978199 0.9761195889
## 401  0.759649123 0.0220978199 0.9761195889
## 869  0.759649123 0.0220978199 0.9761195889
## 872  0.759649123 0.0220978199 0.9761195889
## 1109 0.759649123 0.0220978199 0.9761195889
## 1378 0.759649123 0.0220978199 0.9761195889
## 118  0.770175439 0.0209510669 0.9820632202
## 188  0.770175439 0.0209510669 0.9820632202
## 234  0.770175439 0.0209510669 0.9820632202
## 441  0.770175439 0.0209510669 0.9820632202
## 611  0.770175439 0.0209510669 0.9820632202
## 719  0.770175439 0.0209510669 0.9820632202
## 761  0.770175439 0.0209510669 0.9820632202
## 1209 0.770175439 0.0209510669 0.9820632202
## 1249 0.770175439 0.0209510669 0.9820632202
## 1273 0.770175439 0.0209510669 0.9820632202
## 1339 0.770175439 0.0209510669 0.9820632202
## 1491 0.770175439 0.0209510669 0.9820632202
## 1524 0.770175439 0.0209510669 0.9820632202
## 93   0.778070175 0.0199219682 0.9820632202
## 120  0.778070175 0.0199219682 0.9820632202
## 122  0.778070175 0.0199219682 0.9820632202
## 160  0.778070175 0.0199219682 0.9820632202
## 218  0.778070175 0.0199219682 0.9820632202
## 264  0.778070175 0.0199219682 0.9820632202
## 483  0.778070175 0.0199219682 0.9820632202
## 670  0.778070175 0.0199219682 0.9820632202
## 1090 0.778070175 0.0199219682 0.9820632202
## 132  0.785087719 0.0190296646 0.9820632202
## 365  0.785087719 0.0190296646 0.9820632202
## 466  0.785087719 0.0190296646 0.9820632202
## 645  0.785087719 0.0190296646 0.9820632202
## 673  0.785087719 0.0190296646 0.9820632202
## 1201 0.785087719 0.0190296646 0.9820632202
## 1300 0.785087719 0.0190296646 0.9820632202
## 1516 0.785087719 0.0190296646 0.9820632202
## 183  0.789473684 0.0184824377 0.9820632202
## 429  0.789473684 0.0184824377 0.9820632202
## 463  0.789473684 0.0184824377 0.9820632202
## 1272 0.789473684 0.0184824377 0.9820632202
## 1346 0.789473684 0.0184824377 0.9820632202
## 42   0.797368421 0.0177660508 0.9880244991
## 133  0.797368421 0.0177660508 0.9880244991
## 289  0.797368421 0.0177660508 0.9880244991
## 480  0.797368421 0.0177660508 0.9880244991
## 683  0.797368421 0.0177660508 0.9880244991
## 770  0.797368421 0.0177660508 0.9880244991
## 912  0.797368421 0.0177660508 0.9880244991
## 1062 0.797368421 0.0177660508 0.9880244991
## 1278 0.797368421 0.0177660508 0.9880244991
## 1313 0.797368421 0.0177660508 0.9880244991
## 350  0.801754386 0.0172383538 0.9880244991
## 576  0.801754386 0.0172383538 0.9880244991
## 787  0.801754386 0.0172383538 0.9880244991
## 1449 0.801754386 0.0172383538 0.9880244991
## 1480 0.801754386 0.0172383538 0.9880244991
## 219  0.804385965 0.0169253627 0.9880244991
## 751  0.804385965 0.0169253627 0.9880244991
## 911  0.804385965 0.0169253627 0.9880244991
## 3    0.811403509 0.0161037821 0.9880244991
## 24   0.811403509 0.0161037821 0.9880244991
## 119  0.811403509 0.0161037821 0.9880244991
## 460  0.811403509 0.0161037821 0.9880244991
## 701  0.811403509 0.0161037821 0.9880244991
## 1331 0.811403509 0.0161037821 0.9880244991
## 1498 0.811403509 0.0161037821 0.9880244991
## 1515 0.811403509 0.0161037821 0.9880244991
## 67   0.819298246 0.0154401048 0.9940034257
## 91   0.819298246 0.0154401048 0.9940034257
## 131  0.819298246 0.0154401048 0.9940034257
## 153  0.819298246 0.0154401048 0.9940034257
## 163  0.819298246 0.0154401048 0.9940034257
## 217  0.819298246 0.0154401048 0.9940034257
## 304  0.819298246 0.0154401048 0.9940034257
## 756  0.819298246 0.0154401048 0.9940034257
## 797  0.819298246 0.0154401048 0.9940034257
## 1124 0.819298246 0.0154401048 0.9940034257
## 324  0.828070175 0.0144603707 0.9940034257
## 649  0.828070175 0.0144603707 0.9940034257
## 652  0.828070175 0.0144603707 0.9940034257
## 859  0.828070175 0.0144603707 0.9940034257
## 931  0.828070175 0.0144603707 0.9940034257
## 994  0.828070175 0.0144603707 0.9940034257
## 1195 0.828070175 0.0144603707 0.9940034257
## 1238 0.828070175 0.0144603707 0.9940034257
## 1302 0.828070175 0.0144603707 0.9940034257
## 1332 0.828070175 0.0144603707 0.9940034257
## 14   0.837719298 0.0134142293 0.9940034257
## 212  0.837719298 0.0134142293 0.9940034257
## 383  0.837719298 0.0134142293 0.9940034257
## 479  0.837719298 0.0134142293 0.9940034257
## 750  0.837719298 0.0134142293 0.9940034257
## 865  0.837719298 0.0134142293 0.9940034257
## 1225 0.837719298 0.0134142293 0.9940034257
## 1420 0.837719298 0.0134142293 0.9940034257
## 1433 0.837719298 0.0134142293 0.9940034257
## 1509 0.837719298 0.0134142293 0.9940034257
## 1526 0.837719298 0.0134142293 0.9940034257
## 749  0.842105263 0.0129493338 0.9940034257
## 820  0.842105263 0.0129493338 0.9940034257
## 1342 0.842105263 0.0129493338 0.9940034257
## 1412 0.842105263 0.0129493338 0.9940034257
## 1517 0.842105263 0.0129493338 0.9940034257
## 5    0.850877193 0.0120389029 0.9940034257
## 65   0.850877193 0.0120389029 0.9940034257
## 385  0.850877193 0.0120389029 0.9940034257
## 396  0.850877193 0.0120389029 0.9940034257
## 482  0.850877193 0.0120389029 0.9940034257
## 625  0.850877193 0.0120389029 0.9940034257
## 987  0.850877193 0.0120389029 0.9940034257
## 1080 0.850877193 0.0120389029 0.9940034257
## 1200 0.850877193 0.0120389029 0.9940034257
## 1333 0.850877193 0.0120389029 0.9940034257
## 90   0.856140351 0.0115047551 0.9940034257
## 176  0.856140351 0.0115047551 0.9940034257
## 439  0.856140351 0.0115047551 0.9940034257
## 615  0.856140351 0.0115047551 0.9940034257
## 917  0.856140351 0.0115047551 0.9940034257
## 1445 0.856140351 0.0115047551 0.9940034257
## 86   0.864035088 0.0109383210 1.0000000000
## 337  0.864035088 0.0109383210 1.0000000000
## 367  0.864035088 0.0109383210 1.0000000000
## 468  0.864035088 0.0109383210 1.0000000000
## 529  0.864035088 0.0109383210 1.0000000000
## 610  0.864035088 0.0109383210 1.0000000000
## 766  0.864035088 0.0109383210 1.0000000000
## 893  0.864035088 0.0109383210 1.0000000000
## 1008 0.864035088 0.0109383210 1.0000000000
## 1367 0.864035088 0.0109383210 1.0000000000
## 334  0.871052632 0.0102540950 1.0000000000
## 602  0.871052632 0.0102540950 1.0000000000
## 767  0.871052632 0.0102540950 1.0000000000
## 772  0.871052632 0.0102540950 1.0000000000
## 919  0.871052632 0.0102540950 1.0000000000
## 935  0.871052632 0.0102540950 1.0000000000
## 1078 0.871052632 0.0102540950 1.0000000000
## 1375 0.871052632 0.0102540950 1.0000000000
## 251  0.880701754 0.0093376528 1.0000000000
## 364  0.880701754 0.0093376528 1.0000000000
## 513  0.880701754 0.0093376528 1.0000000000
## 574  0.880701754 0.0093376528 1.0000000000
## 575  0.880701754 0.0093376528 1.0000000000
## 715  0.880701754 0.0093376528 1.0000000000
## 819  0.880701754 0.0093376528 1.0000000000
## 858  0.880701754 0.0093376528 1.0000000000
## 1133 0.880701754 0.0093376528 1.0000000000
## 1366 0.880701754 0.0093376528 1.0000000000
## 1490 0.880701754 0.0093376528 1.0000000000
## 135  0.885964912 0.0088493555 1.0000000000
## 794  0.885964912 0.0088493555 1.0000000000
## 989  0.885964912 0.0088493555 1.0000000000
## 996  0.885964912 0.0088493555 1.0000000000
## 1334 0.885964912 0.0088493555 1.0000000000
## 1494 0.885964912 0.0088493555 1.0000000000
## 229  0.891228070 0.0083690354 1.0000000000
## 672  0.891228070 0.0083690354 1.0000000000
## 847  0.891228070 0.0083690354 1.0000000000
## 1079 0.891228070 0.0083690354 1.0000000000
## 1429 0.891228070 0.0083690354 1.0000000000
## 1450 0.891228070 0.0083690354 1.0000000000
## 64   0.898245614 0.0077407588 1.0000000000
## 471  0.898245614 0.0077407588 1.0000000000
## 499  0.898245614 0.0077407588 1.0000000000
## 531  0.898245614 0.0077407588 1.0000000000
## 1058 0.898245614 0.0077407588 1.0000000000
## 1185 0.898245614 0.0077407588 1.0000000000
## 1189 0.898245614 0.0077407588 1.0000000000
## 1478 0.898245614 0.0077407588 1.0000000000
## 20   0.904385965 0.0072021590 1.0000000000
## 422  0.904385965 0.0072021590 1.0000000000
## 774  0.904385965 0.0072021590 1.0000000000
## 815  0.904385965 0.0072021590 1.0000000000
## 867  0.904385965 0.0072021590 1.0000000000
## 1095 0.904385965 0.0072021590 1.0000000000
## 1154 0.904385965 0.0072021590 1.0000000000
## 73   0.911403509 0.0065990479 1.0000000000
## 511  0.911403509 0.0065990479 1.0000000000
## 553  0.911403509 0.0065990479 1.0000000000
## 752  0.911403509 0.0065990479 1.0000000000
## 782  0.911403509 0.0065990479 1.0000000000
## 793  0.911403509 0.0065990479 1.0000000000
## 1108 0.911403509 0.0065990479 1.0000000000
## 1446 0.911403509 0.0065990479 1.0000000000
## 9    0.917543860 0.0060819569 1.0000000000
## 438  0.917543860 0.0060819569 1.0000000000
## 604  0.917543860 0.0060819569 1.0000000000
## 773  0.917543860 0.0060819569 1.0000000000
## 1294 0.917543860 0.0060819569 1.0000000000
## 1301 0.917543860 0.0060819569 1.0000000000
## 1492 0.917543860 0.0060819569 1.0000000000
## 192  0.925438596 0.0054313476 1.0000000000
## 451  0.925438596 0.0054313476 1.0000000000
## 459  0.925438596 0.0054313476 1.0000000000
## 505  0.925438596 0.0054313476 1.0000000000
## 647  0.925438596 0.0054313476 1.0000000000
## 692  0.925438596 0.0054313476 1.0000000000
## 835  0.925438596 0.0054313476 1.0000000000
## 839  0.925438596 0.0054313476 1.0000000000
## 1241 0.925438596 0.0054313476 1.0000000000
## 31   0.938596491 0.0043814382 1.0000000000
## 39   0.938596491 0.0043814382 1.0000000000
## 231  0.938596491 0.0043814382 1.0000000000
## 357  0.938596491 0.0043814382 1.0000000000
## 382  0.938596491 0.0043814382 1.0000000000
## 450  0.938596491 0.0043814382 1.0000000000
## 627  0.938596491 0.0043814382 1.0000000000
## 722  0.938596491 0.0043814382 1.0000000000
## 776  0.938596491 0.0043814382 1.0000000000
## 889  0.938596491 0.0043814382 1.0000000000
## 1019 0.938596491 0.0043814382 1.0000000000
## 1036 0.938596491 0.0043814382 1.0000000000
## 1112 0.938596491 0.0043814382 1.0000000000
## 1158 0.938596491 0.0043814382 1.0000000000
## 1224 0.938596491 0.0043814382 1.0000000000
## 34   0.950877193 0.0034388832 1.0000000000
## 191  0.950877193 0.0034388832 1.0000000000
## 329  0.950877193 0.0034388832 1.0000000000
## 405  0.950877193 0.0034388832 1.0000000000
## 607  0.950877193 0.0034388832 1.0000000000
## 713  0.950877193 0.0034388832 1.0000000000
## 1013 0.950877193 0.0034388832 1.0000000000
## 1016 0.950877193 0.0034388832 1.0000000000
## 1092 0.950877193 0.0034388832 1.0000000000
## 1256 0.950877193 0.0034388832 1.0000000000
## 1350 0.950877193 0.0034388832 1.0000000000
## 1373 0.950877193 0.0034388832 1.0000000000
## 1522 0.950877193 0.0034388832 1.0000000000
## 1525 0.950877193 0.0034388832 1.0000000000
## 48   0.960526316 0.0027226008 1.0000000000
## 130  0.960526316 0.0027226008 1.0000000000
## 252  0.960526316 0.0027226008 1.0000000000
## 769  0.960526316 0.0027226008 1.0000000000
## 783  0.960526316 0.0027226008 1.0000000000
## 784  0.960526316 0.0027226008 1.0000000000
## 840  0.960526316 0.0027226008 1.0000000000
## 851  0.960526316 0.0027226008 1.0000000000
## 947  0.960526316 0.0027226008 1.0000000000
## 1305 0.960526316 0.0027226008 1.0000000000
## 1503 0.960526316 0.0027226008 1.0000000000
## 110  0.969298246 0.0020893443 1.0000000000
## 262  0.969298246 0.0020893443 1.0000000000
## 305  0.969298246 0.0020893443 1.0000000000
## 552  0.969298246 0.0020893443 1.0000000000
## 985  0.969298246 0.0020893443 1.0000000000
## 1060 0.969298246 0.0020893443 1.0000000000
## 1138 0.969298246 0.0020893443 1.0000000000
## 1308 0.969298246 0.0020893443 1.0000000000
## 1409 0.969298246 0.0020893443 1.0000000000
## 1451 0.969298246 0.0020893443 1.0000000000
## 97   0.975438596 0.0016559321 1.0000000000
## 502  0.975438596 0.0016559321 1.0000000000
## 509  0.975438596 0.0016559321 1.0000000000
## 551  0.975438596 0.0016559321 1.0000000000
## 890  0.975438596 0.0016559321 1.0000000000
## 1222 0.975438596 0.0016559321 1.0000000000
## 1477 0.975438596 0.0016559321 1.0000000000
## 139  0.978070175 0.0014726223 1.0000000000
## 1088 0.978070175 0.0014726223 1.0000000000
## 1235 0.978070175 0.0014726223 1.0000000000
## 53   0.985087719 0.0009908215 1.0000000000
## 225  0.985087719 0.0009908215 1.0000000000
## 755  0.985087719 0.0009908215 1.0000000000
## 1037 0.985087719 0.0009908215 1.0000000000
## 1132 0.985087719 0.0009908215 1.0000000000
## 1187 0.985087719 0.0009908215 1.0000000000
## 1374 0.985087719 0.0009908215 1.0000000000
## 1430 0.985087719 0.0009908215 1.0000000000
## 328  0.991228070 0.0005774803 1.0000000000
## 549  0.991228070 0.0005774803 1.0000000000
## 603  0.991228070 0.0005774803 1.0000000000
## 1083 0.991228070 0.0005774803 1.0000000000
## 1206 0.991228070 0.0005774803 1.0000000000
## 1227 0.991228070 0.0005774803 1.0000000000
## 1296 0.991228070 0.0005774803 1.0000000000
## 159  0.994736842 0.0003446717 1.0000000000
## 504  0.994736842 0.0003446717 1.0000000000
## 1135 0.994736842 0.0003446717 1.0000000000
## 1236 0.994736842 0.0003446717 1.0000000000
## 260  1.000000000 0.0000000000 1.0000000000
## 379  1.000000000 0.0000000000 1.0000000000
## 427  1.000000000 0.0000000000 1.0000000000
## 478  1.000000000 0.0000000000 1.0000000000
## 550  1.000000000 0.0000000000 1.0000000000
## 1254 1.000000000 0.0000000000 1.0000000000
## 
## 
## [[1]]$optres
## [[1]]$optres$Group1
##                Score        CI
## SENS           0.654  0.61-0.7
## SPEC           0.799 0.77-0.82
## MCC            0.424      <NA>
## Informedness   0.453      <NA>
## PREC           0.527 0.48-0.57
## NPV            0.871 0.85-0.89
## FPR            0.201      <NA>
## F1             0.584      <NA>
## TP           255.000      <NA>
## FP           229.000      <NA>
## TN           911.000      <NA>
## FN           135.000      <NA>
## AUC-ROC        0.810 0.78-0.84
## AUC-PR         0.610      <NA>
## AUC-PRG        0.170      <NA>
## 
## 
## [[1]]$stdres
## [[1]]$stdres$Group1
##                Score        CI
## SENS           0.562 0.51-0.61
## SPEC           0.874 0.85-0.89
## MCC            0.446      <NA>
## Informedness   0.435      <NA>
## PREC           0.603 0.55-0.65
## NPV            0.853 0.83-0.87
## FPR            0.126      <NA>
## F1             0.582      <NA>
## TP           219.000      <NA>
## FP           144.000      <NA>
## TN           996.000      <NA>
## FN           171.000      <NA>
## AUC-ROC        0.810 0.78-0.84
## AUC-PR         0.610      <NA>
## AUC-PRG        0.170      <NA>
## 
## 
## 
## [[2]]
## [[2]]$roc

## 
## [[2]]$proc

## 
## [[2]]$prg

## 
## [[2]]$cc

## 
## [[2]]$probs
## [[2]]$probs$Group1
##       one  zero  obs  Group TP TN FP FN      SENS       SPEC Informedness
## 163 0.948 0.052  one Group1  1 28  0  8 0.1111111 1.00000000   0.11111111
## 151 0.732 0.268  one Group1  2 28  0  7 0.2222222 1.00000000   0.22222222
## 150 0.652 0.348  one Group1  3 28  0  6 0.3333333 1.00000000   0.33333333
## 168 0.648 0.352  one Group1  4 28  0  5 0.4444444 1.00000000   0.44444444
## 93  0.622 0.378 zero Group1  4 27  1  5 0.4444444 0.96428571   0.40873016
## 141 0.572 0.428 zero Group1  4 26  2  5 0.4444444 0.92857143   0.37301587
## 56  0.524 0.476 zero Group1  5 25  3  4 0.5555556 0.89285714   0.44841270
## 159 0.524 0.476  one Group1  5 25  3  4 0.5555556 0.89285714   0.44841270
## 146 0.510 0.490  one Group1  6 25  3  3 0.6666667 0.89285714   0.55952381
## 39  0.488 0.512 zero Group1  6 24  4  3 0.6666667 0.85714286   0.52380952
## 149 0.430 0.570  one Group1  7 24  4  2 0.7777778 0.85714286   0.63492063
## 76  0.414 0.586 zero Group1  7 23  5  2 0.7777778 0.82142857   0.59920635
## 27  0.402 0.598 zero Group1  7 22  6  2 0.7777778 0.78571429   0.56349206
## 96  0.334 0.666 zero Group1  7 21  7  2 0.7777778 0.75000000   0.52777778
## 174 0.262 0.738  one Group1  8 21  7  1 0.8888889 0.75000000   0.63888889
## 29  0.242 0.758 zero Group1  8 20  8  1 0.8888889 0.71428571   0.60317460
## 14  0.234 0.766 zero Group1  8 19  9  1 0.8888889 0.67857143   0.56746032
## 80  0.206 0.794 zero Group1  8 18 10  1 0.8888889 0.64285714   0.53174603
## 87  0.192 0.808 zero Group1  8 17 11  1 0.8888889 0.60714286   0.49603175
## 18  0.180 0.820 zero Group1  8 16 12  1 0.8888889 0.57142857   0.46031746
## 31  0.176 0.824 zero Group1  8 15 13  1 0.8888889 0.53571429   0.42460317
## 63  0.154 0.846 zero Group1  8 14 14  1 0.8888889 0.50000000   0.38888889
## 68  0.150 0.850 zero Group1  8 13 15  1 0.8888889 0.46428571   0.35317460
## 62  0.100 0.900 zero Group1  9 12 16  0 1.0000000 0.42857143   0.42857143
## 154 0.100 0.900  one Group1  9 12 16  0 1.0000000 0.42857143   0.42857143
## 41  0.098 0.902 zero Group1  9 11 17  0 1.0000000 0.39285714   0.39285714
## 127 0.086 0.914 zero Group1  9 10 18  0 1.0000000 0.35714286   0.35714286
## 36  0.082 0.918 zero Group1  9  9 19  0 1.0000000 0.32142857   0.32142857
## 10  0.066 0.934 zero Group1  9  5 23  0 1.0000000 0.17857143   0.17857143
## 59  0.066 0.934 zero Group1  9  5 23  0 1.0000000 0.17857143   0.17857143
## 61  0.066 0.934 zero Group1  9  5 23  0 1.0000000 0.17857143   0.17857143
## 138 0.066 0.934 zero Group1  9  5 23  0 1.0000000 0.17857143   0.17857143
## 49  0.058 0.942 zero Group1  9  4 24  0 1.0000000 0.14285714   0.14285714
## 71  0.046 0.954 zero Group1  9  3 25  0 1.0000000 0.10714286   0.10714286
## 8   0.044 0.956 zero Group1  9  2 26  0 1.0000000 0.07142857   0.07142857
## 110 0.030 0.970 zero Group1  9  1 27  0 1.0000000 0.03571429   0.03571429
## 9   0.010 0.990 zero Group1  9  0 28  0 1.0000000 0.00000000   0.00000000
##          PREC       NPV      MARK        F1        MCC        FPR          PG
## 163 1.0000000 0.7777778 0.7777778 0.2000000 0.29397237 0.00000000 1.000000000
## 151 1.0000000 0.8000000 0.8000000 0.3636364 0.42163702 0.00000000 1.000000000
## 150 1.0000000 0.8235294 0.8235294 0.5000000 0.52393683 0.00000000 1.000000000
## 168 1.0000000 0.8484848 0.8484848 0.6153846 0.61408825 0.00000000 1.000000000
## 93  0.8000000 0.8437500 0.6437500 0.5714286 0.51295228 0.03571429 0.588571429
## 141 0.6666667 0.8387097 0.5053763 0.5333333 0.43418130 0.07142857 0.373015873
## 56  0.6250000 0.8620690 0.4870690 0.5882353 0.46734132 0.10714286 0.315290179
## 159 0.6250000 0.8620690 0.4870690 0.5882353 0.46734132 0.10714286 0.315290179
## 146 0.6666667 0.8928571 0.5595238 0.6666667 0.55952381 0.10714286 0.373015873
## 39  0.6000000 0.8888889 0.4888889 0.6315789 0.50604808 0.14285714 0.282857143
## 149 0.6363636 0.9230769 0.5594406 0.7000000 0.59598688 0.14285714 0.330578512
## 76  0.5833333 0.9200000 0.5033333 0.6666667 0.54918169 0.17857143 0.262152778
## 27  0.5384615 0.9166667 0.4551282 0.6363636 0.50641992 0.21428571 0.210059172
## 96  0.5000000 0.9130435 0.4130435 0.6086957 0.46689953 0.25000000 0.169642857
## 174 0.5333333 0.9545455 0.4878788 0.6666667 0.55830130 0.25000000 0.204444444
## 29  0.5000000 0.9523810 0.4523810 0.6400000 0.52236453 0.28571429 0.169642857
## 14  0.4705882 0.9500000 0.4205882 0.6153846 0.48853570 0.32142857 0.141374197
## 80  0.4444444 0.9473684 0.3918129 0.5925926 0.45644817 0.35714286 0.118165785
## 87  0.4210526 0.9444444 0.3654971 0.5714286 0.42579121 0.39285714 0.098931539
## 18  0.4000000 0.9411765 0.3411765 0.5517241 0.39629470 0.42857143 0.082857143
## 31  0.3809524 0.9375000 0.3184524 0.5333333 0.36771714 0.46428571 0.069322967
## 63  0.3636364 0.9333333 0.2969697 0.5161290 0.33983557 0.50000000 0.057851240
## 68  0.3478261 0.9285714 0.2763975 0.5000000 0.31243653 0.53571429 0.048069133
## 62  0.3600000 1.0000000 0.3600000 0.5294118 0.39279220 0.57142857 0.055542857
## 154 0.3600000 1.0000000 0.3600000 0.5294118 0.39279220 0.57142857 0.055542857
## 41  0.3461538 1.0000000 0.3461538 0.5142857 0.36876688 0.60714286 0.047073119
## 127 0.3333333 1.0000000 0.3333333 0.5000000 0.34503278 0.64285714 0.039682540
## 36  0.3214286 1.0000000 0.3214286 0.4864865 0.32142857 0.67857143 0.033208819
## 10  0.2812500 1.0000000 0.2812500 0.4390244 0.22410536 0.82142857 0.014125279
## 59  0.2812500 1.0000000 0.2812500 0.4390244 0.22410536 0.82142857 0.014125279
## 61  0.2812500 1.0000000 0.2812500 0.4390244 0.22410536 0.82142857 0.014125279
## 138 0.2812500 1.0000000 0.2812500 0.4390244 0.22410536 0.82142857 0.014125279
## 49  0.2727273 1.0000000 0.2727273 0.4285714 0.19738551 0.85714286 0.010625738
## 71  0.2647059 1.0000000 0.2647059 0.4186047 0.16840827 0.89285714 0.007507415
## 8   0.2571429 1.0000000 0.2571429 0.4090909 0.13552619 0.92857143 0.004723032
## 110 0.2500000 1.0000000 0.2500000 0.4000000 0.09449112 0.96428571 0.002232143
## 9   0.2432432 0.0000000       NaN 0.3913043        NaN 1.00000000 0.000000000
##             RG
## 163 0.00000000
## 151 0.00000000
## 150 0.03968254
## 168 0.11816578
## 93  0.11816578
## 141 0.11816578
## 56  0.22927690
## 159 0.22927690
## 146 0.37301587
## 39  0.37301587
## 149 0.54938272
## 76  0.54938272
## 27  0.54938272
## 96  0.54938272
## 174 0.75837743
## 29  0.75837743
## 14  0.75837743
## 80  0.75837743
## 87  0.75837743
## 18  0.75837743
## 31  0.75837743
## 63  0.75837743
## 68  0.75837743
## 62  1.00000000
## 154 1.00000000
## 41  1.00000000
## 127 1.00000000
## 36  1.00000000
## 10  1.00000000
## 59  1.00000000
## 61  1.00000000
## 138 1.00000000
## 49  1.00000000
## 71  1.00000000
## 8   1.00000000
## 110 1.00000000
## 9   1.00000000
## 
## 
## [[2]]$optres
## [[2]]$optres$Group1
##               Score        CI
## SENS          0.889 0.57-0.98
## SPEC          0.750 0.57-0.87
## MCC           0.558      <NA>
## Informedness  0.639      <NA>
## PREC          0.533  0.3-0.75
## NPV           0.955 0.78-0.99
## FPR           0.250      <NA>
## F1            0.667      <NA>
## TP            8.000      <NA>
## FP            7.000      <NA>
## TN           21.000      <NA>
## FN            1.000      <NA>
## AUC-ROC       0.870 0.71-1.03
## AUC-PR        0.640      <NA>
## AUC-PRG       0.310      <NA>
## 
## 
## [[2]]$stdres
## [[2]]$stdres$Group1
##               Score        CI
## SENS          0.667 0.35-0.88
## SPEC          0.893 0.73-0.96
## MCC           0.560      <NA>
## Informedness  0.560      <NA>
## PREC          0.667 0.35-0.88
## NPV           0.893 0.73-0.96
## FPR           0.107      <NA>
## F1            0.667      <NA>
## TP            6.000      <NA>
## FP            3.000      <NA>
## TN           25.000      <NA>
## FN            3.000      <NA>
## AUC-ROC       0.870 0.71-1.03
## AUC-PR        0.640      <NA>
## AUC-PRG       0.310      <NA>

xgboost

viz_perf_f(model_m=xgb_m,
           testdat=testSet1,
           bin_num=10)

## [[1]]
## [[1]]$roc

## 
## [[1]]$proc

## 
## [[1]]$prg

## 
## [[1]]$cc

## 
## [[1]]$probs
## [[1]]$probs$Group1
##               one        zero  obs  Group  TP   TN   FP  FN        SENS
## 759  0.9945048690 0.005495131  one Group1   1 1140    0 389 0.002564103
## 555  0.9935181737 0.006481826  one Group1   2 1140    0 388 0.005128205
## 1529 0.9929500818 0.007049918  one Group1   3 1140    0 387 0.007692308
## 967  0.9926397800 0.007360220  one Group1   4 1140    0 386 0.010256410
## 136  0.9924790859 0.007520914  one Group1   5 1140    0 385 0.012820513
## 1455 0.9923019409 0.007698059  one Group1   6 1140    0 384 0.015384615
## 1129 0.9916189909 0.008381009  one Group1   7 1140    0 383 0.017948718
## 517  0.9914612770 0.008538723  one Group1   8 1140    0 382 0.020512821
## 1446 0.9911440611 0.008855939  one Group1   9 1140    0 381 0.023076923
## 1331 0.9901415706 0.009858429  one Group1  10 1140    0 380 0.025641026
## 203  0.9898746014 0.010125399  one Group1  11 1140    0 379 0.028205128
## 169  0.9879905581 0.012009442  one Group1  12 1140    0 378 0.030769231
## 1022 0.9876291752 0.012370825 zero Group1  12 1139    1 378 0.030769231
## 1082 0.9868545532 0.013145447  one Group1  13 1139    1 377 0.033333333
## 1465 0.9866861105 0.013313890 zero Group1  13 1138    2 377 0.033333333
## 1102 0.9851962328 0.014803767 zero Group1  13 1137    3 377 0.033333333
## 917  0.9847635627 0.015236437  one Group1  14 1137    3 376 0.035897436
## 1330 0.9842139482 0.015786052  one Group1  15 1137    3 375 0.038461538
## 121  0.9839093089 0.016090691  one Group1  16 1137    3 374 0.041025641
## 721  0.9834108949 0.016589105  one Group1  17 1137    3 373 0.043589744
## 24   0.9833383560 0.016661644  one Group1  18 1137    3 372 0.046153846
## 1329 0.9827117324 0.017288268  one Group1  19 1137    3 371 0.048717949
## 598  0.9824221730 0.017577827  one Group1  20 1137    3 370 0.051282051
## 218  0.9821310043 0.017868996  one Group1  21 1137    3 369 0.053846154
## 602  0.9814960361 0.018503964  one Group1  22 1137    3 368 0.056410256
## 1087 0.9804524183 0.019547582  one Group1  23 1137    3 367 0.058974359
## 18   0.9788227677 0.021177232  one Group1  24 1137    3 366 0.061538462
## 764  0.9770012498 0.022998750  one Group1  25 1137    3 365 0.064102564
## 262  0.9767236710 0.023276329  one Group1  26 1137    3 364 0.066666667
## 1126 0.9758298397 0.024170160  one Group1  27 1137    3 363 0.069230769
## 480  0.9757391214 0.024260879  one Group1  28 1137    3 362 0.071794872
## 132  0.9754996300 0.024500370 zero Group1  28 1136    4 362 0.071794872
## 1083 0.9754372239 0.024562776  one Group1  29 1136    4 361 0.074358974
## 485  0.9749724269 0.025027573  one Group1  30 1136    4 360 0.076923077
## 726  0.9748998880 0.025100112  one Group1  31 1136    4 359 0.079487179
## 862  0.9740864038 0.025913596 zero Group1  31 1135    5 359 0.079487179
## 484  0.9729025364 0.027097464  one Group1  32 1135    5 358 0.082051282
## 1325 0.9726031423 0.027396858  one Group1  33 1135    5 357 0.084615385
## 1205 0.9721039534 0.027896047  one Group1  34 1135    5 356 0.087179487
## 796  0.9712971449 0.028702855  one Group1  35 1135    5 355 0.089743590
## 1009 0.9703266621 0.029673338  one Group1  36 1135    5 354 0.092307692
## 1085 0.9701135755 0.029886425  one Group1  37 1135    5 353 0.094871795
## 1335 0.9699532986 0.030046701  one Group1  38 1135    5 352 0.097435897
## 1122 0.9696123600 0.030387640  one Group1  39 1135    5 351 0.100000000
## 999  0.9685779810 0.031422019  one Group1  40 1135    5 350 0.102564103
## 763  0.9679338336 0.032066166  one Group1  41 1135    5 349 0.105128205
## 1161 0.9677235484 0.032276452  one Group1  42 1135    5 348 0.107692308
## 1371 0.9669600725 0.033039927  one Group1  43 1135    5 347 0.110256410
## 392  0.9664456248 0.033554375  one Group1  44 1135    5 346 0.112820513
## 1410 0.9657543302 0.034245670 zero Group1  44 1134    6 346 0.112820513
## 1334 0.9656539559 0.034346044  one Group1  45 1134    6 345 0.115384615
## 477  0.9643201232 0.035679877  one Group1  46 1134    6 344 0.117948718
## 1008 0.9642587900 0.035741210  one Group1  47 1134    6 343 0.120512821
## 247  0.9641197324 0.035880268  one Group1  48 1134    6 342 0.123076923
## 878  0.9639183283 0.036081672  one Group1  49 1134    6 341 0.125641026
## 1089 0.9637243748 0.036275625  one Group1  50 1134    6 340 0.128205128
## 756  0.9633909464 0.036609054  one Group1  51 1134    6 339 0.130769231
## 399  0.9625209570 0.037479043  one Group1  52 1134    6 338 0.133333333
## 960  0.9622915387 0.037708461  one Group1  53 1134    6 337 0.135897436
## 27   0.9609897137 0.039010286  one Group1  54 1134    6 336 0.138461538
## 450  0.9590873718 0.040912628 zero Group1  54 1133    7 336 0.138461538
## 34   0.9585717320 0.041428268  one Group1  55 1133    7 335 0.141025641
## 1447 0.9585314393 0.041468561  one Group1  56 1133    7 334 0.143589744
## 775  0.9563025832 0.043697417 zero Group1  56 1132    8 334 0.143589744
## 1365 0.9562034011 0.043796599  one Group1  57 1132    8 333 0.146153846
## 1203 0.9560239315 0.043976068  one Group1  58 1132    8 332 0.148717949
## 1288 0.9555708766 0.044429123 zero Group1  58 1131    9 332 0.148717949
## 1251 0.9546629190 0.045337081  one Group1  59 1131    9 331 0.151282051
## 1042 0.9537520409 0.046247959  one Group1  60 1131    9 330 0.153846154
## 168  0.9535968304 0.046403170 zero Group1  60 1130   10 330 0.153846154
## 312  0.9535731673 0.046426833  one Group1  61 1130   10 329 0.156410256
## 515  0.9534916878 0.046508312  one Group1  62 1130   10 328 0.158974359
## 251  0.9513345361 0.048665464  one Group1  63 1130   10 327 0.161538462
## 252  0.9510463476 0.048953652  one Group1  64 1130   10 326 0.164102564
## 720  0.9510079622 0.048992038  one Group1  65 1130   10 325 0.166666667
## 882  0.9493222237 0.050677776  one Group1  66 1130   10 324 0.169230769
## 1328 0.9476998448 0.052300155  one Group1  67 1130   10 323 0.171794872
## 846  0.9472122192 0.052787781  one Group1  68 1130   10 322 0.174358974
## 256  0.9472072124 0.052792788  one Group1  69 1130   10 321 0.176923077
## 1314 0.9457287192 0.054271281 zero Group1  69 1129   11 321 0.176923077
## 146  0.9455267191 0.054473281  one Group1  70 1129   11 320 0.179487179
## 276  0.9435681701 0.056431830  one Group1  71 1129   11 319 0.182051282
## 148  0.9423826933 0.057617307 zero Group1  71 1128   12 319 0.182051282
## 724  0.9419798851 0.058020115  one Group1  72 1128   12 318 0.184615385
## 604  0.9417840242 0.058215976  one Group1  73 1128   12 317 0.187179487
## 174  0.9402701855 0.059729815 zero Group1  73 1127   13 317 0.187179487
## 1453 0.9395727515 0.060427248  one Group1  74 1127   13 316 0.189743590
## 725  0.9394582510 0.060541749  one Group1  75 1127   13 315 0.192307692
## 1206 0.9386565089 0.061343491  one Group1  76 1127   13 314 0.194871795
## 193  0.9380239248 0.061976075  one Group1  77 1127   13 313 0.197435897
## 1247 0.9377091527 0.062290847  one Group1  78 1127   13 312 0.200000000
## 196  0.9377036691 0.062296331  one Group1  79 1127   13 311 0.202564103
## 843  0.9376339912 0.062366009  one Group1  80 1127   13 310 0.205128205
## 718  0.9371002913 0.062899709  one Group1  81 1127   13 309 0.207692308
## 722  0.9367158413 0.063284159  one Group1  82 1127   13 308 0.210256410
## 273  0.9366059303 0.063394070  one Group1  83 1127   13 307 0.212820513
## 233  0.9356404543 0.064359546  one Group1  84 1127   13 306 0.215384615
## 125  0.9354654551 0.064534545  one Group1  85 1127   13 305 0.217948718
## 1528 0.9353917241 0.064608276  one Group1  86 1127   13 304 0.220512821
## 1128 0.9343600869 0.065639913  one Group1  87 1127   13 303 0.223076923
## 637  0.9339681864 0.066031814  one Group1  88 1127   13 302 0.225641026
## 92   0.9333807230 0.066619277  one Group1  89 1127   13 301 0.228205128
## 82   0.9332301617 0.066769838  one Group1  90 1127   13 300 0.230769231
## 1004 0.9331367016 0.066863298  one Group1  91 1127   13 299 0.233333333
## 479  0.9330306649 0.066969335  one Group1  92 1127   13 298 0.235897436
## 398  0.9308114648 0.069188535  one Group1  93 1127   13 297 0.238461538
## 454  0.9300952554 0.069904745 zero Group1  93 1126   14 297 0.238461538
## 1249 0.9296389222 0.070361078  one Group1  94 1126   14 296 0.241025641
## 1262 0.9292551875 0.070744812 zero Group1  94 1125   15 296 0.241025641
## 1504 0.9287794828 0.071220517 zero Group1  94 1124   16 296 0.241025641
## 171  0.9287745357 0.071225464 zero Group1  94 1123   17 296 0.241025641
## 120  0.9286162257 0.071383774  one Group1  95 1123   17 295 0.243589744
## 150  0.9280254841 0.071974516  one Group1  96 1123   17 294 0.246153846
## 838  0.9270142913 0.072985709  one Group1  97 1123   17 293 0.248717949
## 887  0.9255965948 0.074403405  one Group1  98 1123   17 292 0.251282051
## 842  0.9251695871 0.074830413  one Group1  99 1123   17 291 0.253846154
## 1155 0.9246708155 0.075329185 zero Group1  99 1122   18 291 0.253846154
## 7    0.9239093065 0.076090693  one Group1 101 1122   18 289 0.258974359
## 43   0.9239093065 0.076090693  one Group1 101 1122   18 289 0.258974359
## 767  0.9228078127 0.077192187  one Group1 102 1122   18 288 0.261538462
## 29   0.9227818251 0.077218175  one Group1 103 1122   18 287 0.264102564
## 900  0.9209874868 0.079012513 zero Group1 103 1121   19 287 0.264102564
## 1525 0.9207103848 0.079289615  one Group1 104 1121   19 286 0.266666667
## 391  0.9200844765 0.079915524  one Group1 105 1121   19 285 0.269230769
## 1210 0.9186593294 0.081340671  one Group1 106 1121   19 284 0.271794872
## 402  0.9175078273 0.082492173  one Group1 107 1121   19 283 0.274358974
## 128  0.9159159064 0.084084094  one Group1 108 1121   19 282 0.276923077
## 1207 0.9144638181 0.085536182  one Group1 109 1121   19 281 0.279487179
## 1246 0.9104669094 0.089533091  one Group1 110 1121   19 280 0.282051282
## 458  0.9075906277 0.092409372 zero Group1 110 1120   20 280 0.282051282
## 145  0.9075086713 0.092491329 zero Group1 110 1119   21 280 0.282051282
## 1527 0.9074882269 0.092511773  one Group1 111 1119   21 279 0.284615385
## 885  0.9068064690 0.093193531  one Group1 112 1119   21 278 0.287179487
## 601  0.9065676332 0.093432367  one Group1 113 1119   21 277 0.289743590
## 126  0.9052325487 0.094767451  one Group1 114 1119   21 276 0.292307692
## 179  0.9044921994 0.095507801  one Group1 115 1119   21 275 0.294871795
## 108  0.9040118456 0.095988154 zero Group1 115 1118   22 275 0.294871795
## 393  0.9021427035 0.097857296  one Group1 116 1118   22 274 0.297435897
## 101  0.9017130136 0.098286986  one Group1 117 1118   22 273 0.300000000
## 840  0.9013383985 0.098661602  one Group1 118 1118   22 272 0.302564103
## 712  0.9004229903 0.099577010 zero Group1 118 1117   23 272 0.302564103
## 408  0.9002414942 0.099758506 zero Group1 118 1116   24 272 0.302564103
## 2    0.8950709701 0.104929030  one Group1 119 1116   24 271 0.305128205
## 1088 0.8935266733 0.106473327  one Group1 120 1116   24 270 0.307692308
## 104  0.8923075199 0.107692480  one Group1 121 1116   24 269 0.310256410
## 799  0.8915735483 0.108426452  one Group1 122 1116   24 268 0.312820513
## 1167 0.8885055780 0.111494422 zero Group1 122 1115   25 268 0.312820513
## 114  0.8877368569 0.112263143  one Group1 123 1115   25 267 0.315384615
## 1248 0.8872259855 0.112774014  one Group1 124 1115   25 266 0.317948718
## 1250 0.8864415288 0.113558471  one Group1 125 1115   25 265 0.320512821
## 445  0.8859020472 0.114097953 zero Group1 125 1114   26 265 0.320512821
## 961  0.8848095536 0.115190446  one Group1 126 1114   26 264 0.323076923
## 240  0.8847996593 0.115200341  one Group1 127 1114   26 263 0.325641026
## 405  0.8843351603 0.115664840  one Group1 128 1114   26 262 0.328205128
## 1201 0.8829318285 0.117068172 zero Group1 128 1113   27 262 0.328205128
## 483  0.8825922012 0.117407799  one Group1 129 1113   27 261 0.330769231
## 1266 0.8825654387 0.117434561 zero Group1 129 1112   28 261 0.330769231
## 475  0.8796948195 0.120305181  one Group1 130 1112   28 260 0.333333333
## 307  0.8794067502 0.120593250  one Group1 131 1112   28 259 0.335897436
## 1038 0.8793766499 0.120623350 zero Group1 131 1111   29 259 0.335897436
## 1194 0.8777021766 0.122297823 zero Group1 131 1110   30 259 0.335897436
## 1164 0.8762403131 0.123759687  one Group1 132 1110   30 258 0.338461538
## 1451 0.8751114011 0.124888599  one Group1 133 1110   30 257 0.341025641
## 397  0.8735552430 0.126444757  one Group1 134 1110   30 256 0.343589744
## 1175 0.8709800243 0.129019976 zero Group1 134 1109   31 256 0.343589744
## 1414 0.8678434491 0.132156551 zero Group1 134 1108   32 256 0.343589744
## 237  0.8657051325 0.134294868  one Group1 135 1108   32 255 0.346153846
## 1506 0.8630524874 0.136947513 zero Group1 135 1107   33 255 0.346153846
## 634  0.8599053621 0.140094638  one Group1 136 1107   33 254 0.348717949
## 257  0.8598462343 0.140153766  one Group1 137 1107   33 253 0.351282051
## 968  0.8592076302 0.140792370  one Group1 138 1107   33 252 0.353846154
## 175  0.8590408564 0.140959144  one Group1 139 1107   33 251 0.356410256
## 835  0.8590092063 0.140990794 zero Group1 139 1106   34 251 0.356410256
## 1208 0.8587812781 0.141218722  one Group1 140 1106   34 250 0.358974359
## 95   0.8546002507 0.145399749 zero Group1 140 1105   35 250 0.358974359
## 77   0.8529505134 0.147049487  one Group1 141 1105   35 249 0.361538462
## 1523 0.8527435660 0.147256434 zero Group1 141 1104   36 249 0.361538462
## 111  0.8519254923 0.148074508  one Group1 142 1104   36 248 0.364102564
## 702  0.8492103219 0.150789678 zero Group1 142 1103   37 248 0.364102564
## 1212 0.8490207791 0.150979221  one Group1 143 1103   37 247 0.366666667
## 867  0.8484218121 0.151578188 zero Group1 143 1102   38 247 0.366666667
## 17   0.8483871818 0.151612818  one Group1 144 1102   38 246 0.369230769
## 395  0.8471778035 0.152822196  one Group1 145 1102   38 245 0.371794872
## 55   0.8469929695 0.153007030 zero Group1 145 1101   39 245 0.371794872
## 1407 0.8469035029 0.153096497 zero Group1 145 1100   40 245 0.371794872
## 83   0.8453334570 0.154666543  one Group1 146 1100   40 244 0.374358974
## 519  0.8428923488 0.157107651  one Group1 147 1100   40 243 0.376923077
## 1061 0.8425098062 0.157490194 zero Group1 147 1099   41 243 0.376923077
## 1395 0.8415860534 0.158413947 zero Group1 147 1098   42 243 0.376923077
## 911  0.8386203647 0.161379635 zero Group1 147 1097   43 243 0.376923077
## 594  0.8384299874 0.161570013  one Group1 148 1097   43 242 0.379487179
## 1306 0.8377755284 0.162224472 zero Group1 148 1096   44 242 0.379487179
## 636  0.8369233012 0.163076699  one Group1 149 1096   44 241 0.382051282
## 84   0.8366817236 0.163318276 zero Group1 149 1095   45 241 0.382051282
## 671  0.8363149166 0.163685083 zero Group1 149 1094   46 241 0.382051282
## 719  0.8358896971 0.164110303  one Group1 150 1094   46 240 0.384615385
## 657  0.8310736418 0.168926358 zero Group1 150 1093   47 240 0.384615385
## 1483 0.8289049268 0.171095073 zero Group1 150 1092   48 240 0.384615385
## 1450 0.8287131190 0.171286881  one Group1 151 1092   48 239 0.387179487
## 597  0.8281441331 0.171855867  one Group1 152 1092   48 238 0.389743590
## 528  0.8276754022 0.172324598 zero Group1 152 1091   49 238 0.389743590
## 996  0.8268538117 0.173146188 zero Group1 152 1090   50 238 0.389743590
## 184  0.8252574801 0.174742520  one Group1 153 1090   50 237 0.392307692
## 940  0.8234552145 0.176544785 zero Group1 153 1089   51 237 0.392307692
## 290  0.8221538067 0.177846193 zero Group1 153 1088   52 237 0.392307692
## 765  0.8213309050 0.178669095  one Group1 154 1088   52 236 0.394871795
## 987  0.8208335042 0.179166496 zero Group1 154 1087   53 236 0.394871795
## 643  0.8146945834 0.185305417  one Group1 155 1087   53 235 0.397435897
## 1131 0.8103430271 0.189656973  one Group1 156 1087   53 234 0.400000000
## 990  0.8096934557 0.190306544 zero Group1 156 1086   54 234 0.400000000
## 100  0.8067925572 0.193207443 zero Group1 156 1085   55 234 0.400000000
## 991  0.8051126003 0.194887400 zero Group1 156 1084   56 234 0.400000000
## 596  0.8046016693 0.195398331  one Group1 157 1084   56 233 0.402564103
## 888  0.8043826818 0.195617318  one Group1 158 1084   56 232 0.405128205
## 118  0.8013250232 0.198674977 zero Group1 158 1083   57 232 0.405128205
## 520  0.7986301184 0.201369882  one Group1 159 1083   57 231 0.407692308
## 35   0.7961573601 0.203842640  one Group1 160 1083   57 230 0.410256410
## 545  0.7957124710 0.204287529 zero Group1 160 1082   58 230 0.410256410
## 302  0.7955970764 0.204402924  one Group1 161 1082   58 229 0.412820513
## 3    0.7949143052 0.205085695 zero Group1 161 1081   59 229 0.412820513
## 499  0.7913744450 0.208625555 zero Group1 161 1080   60 229 0.412820513
## 1482 0.7901508212 0.209849179 zero Group1 161 1079   61 229 0.412820513
## 1191 0.7875498533 0.212450147 zero Group1 161 1078   62 229 0.412820513
## 1041 0.7860368490 0.213963151  one Group1 162 1078   62 228 0.415384615
## 79   0.7848594785 0.215140522 zero Group1 162 1077   63 228 0.415384615
## 351  0.7844547033 0.215545297  one Group1 163 1077   63 227 0.417948718
## 559  0.7837016582 0.216298342 zero Group1 163 1076   64 227 0.417948718
## 1195 0.7836027145 0.216397285 zero Group1 163 1075   65 227 0.417948718
## 1182 0.7796063423 0.220393658 zero Group1 163 1074   66 227 0.417948718
## 761  0.7794216871 0.220578313  one Group1 164 1074   66 226 0.420512821
## 91   0.7773097157 0.222690284  one Group1 165 1074   66 225 0.423076923
## 1332 0.7768063545 0.223193645  one Group1 166 1074   66 224 0.425641026
## 639  0.7755085230 0.224491477  one Group1 167 1074   66 223 0.428205128
## 355  0.7745310664 0.225468934  one Group1 168 1074   66 222 0.430769231
## 747  0.7730294466 0.226970553 zero Group1 168 1073   67 222 0.430769231
## 1165 0.7720066309 0.227993369 zero Group1 168 1072   68 222 0.430769231
## 1264 0.7716382742 0.228361726 zero Group1 168 1071   69 222 0.430769231
## 23   0.7713591456 0.228640854 zero Group1 168 1070   70 222 0.430769231
## 893  0.7708258033 0.229174197 zero Group1 168 1069   71 222 0.430769231
## 1230 0.7699549794 0.230045021 zero Group1 168 1068   72 222 0.430769231
## 1243 0.7674636841 0.232536316  one Group1 169 1068   72 221 0.433333333
## 311  0.7653877139 0.234612286  one Group1 170 1068   72 220 0.435897436
## 279  0.7644371986 0.235562801  one Group1 171 1068   72 219 0.438461538
## 296  0.7589274645 0.241072536 zero Group1 171 1067   73 219 0.438461538
## 396  0.7589039207 0.241096079  one Group1 172 1067   73 218 0.441025641
## 588  0.7586120367 0.241387963 zero Group1 172 1066   74 218 0.441025641
## 1253 0.7574459910 0.242554009  one Group1 173 1066   74 217 0.443589744
## 1298 0.7559049129 0.244095087 zero Group1 173 1065   75 217 0.443589744
## 1333 0.7538992763 0.246100724  one Group1 174 1065   75 216 0.446153846
## 241  0.7518572211 0.248142779  one Group1 175 1065   75 215 0.448717949
## 886  0.7517908216 0.248209178  one Group1 176 1065   75 214 0.451282051
## 473  0.7513750196 0.248624980  one Group1 177 1065   75 213 0.453846154
## 482  0.7507121563 0.249287844  one Group1 178 1065   75 212 0.456410256
## 723  0.7505810857 0.249418914  one Group1 179 1065   75 211 0.458974359
## 463  0.7493273616 0.250672638 zero Group1 179 1064   76 211 0.458974359
## 1312 0.7471511364 0.252848864 zero Group1 179 1063   77 211 0.458974359
## 1370 0.7458791733 0.254120827  one Group1 180 1063   77 210 0.461538462
## 349  0.7416565418 0.258343458 zero Group1 180 1062   78 210 0.461538462
## 1045 0.7393184304 0.260681570 zero Group1 180 1061   79 210 0.461538462
## 624  0.7387394905 0.261260509 zero Group1 180 1060   80 210 0.461538462
## 822  0.7383530140 0.261646986 zero Group1 180 1059   81 210 0.461538462
## 717  0.7383205891 0.261679411  one Group1 181 1059   81 209 0.464102564
## 435  0.7372406125 0.262759387 zero Group1 181 1058   82 209 0.464102564
## 1496 0.7323660254 0.267633975 zero Group1 181 1057   83 209 0.464102564
## 892  0.7296096087 0.270390391 zero Group1 181 1056   84 209 0.464102564
## 325  0.7274459004 0.272554100 zero Group1 181 1055   85 209 0.464102564
## 1125 0.7269381285 0.273061872  one Group1 182 1055   85 208 0.466666667
## 1476 0.7248225212 0.275177479 zero Group1 182 1054   86 208 0.466666667
## 72   0.7196030021 0.280396998  one Group1 183 1054   86 207 0.469230769
## 512  0.7169353366 0.283064663  one Group1 184 1054   86 206 0.471794872
## 195  0.7150281072 0.284971893  one Group1 185 1054   86 205 0.474358974
## 660  0.7136059999 0.286394000 zero Group1 185 1053   87 205 0.474358974
## 849  0.7127802372 0.287219763  one Group1 186 1053   87 204 0.476923077
## 5    0.7125637531 0.287436247  one Group1 187 1053   87 203 0.479487179
## 382  0.7120605111 0.287939489 zero Group1 187 1052   88 203 0.479487179
## 1286 0.7092421651 0.290757835  one Group1 188 1052   88 202 0.482051282
## 403  0.7075440884 0.292455912  one Group1 189 1052   88 201 0.484615385
## 650  0.7067647576 0.293235242 zero Group1 189 1051   89 201 0.484615385
## 345  0.7028098106 0.297190189 zero Group1 189 1050   90 201 0.484615385
## 1480 0.7012865543 0.298713446 zero Group1 189 1049   91 201 0.484615385
## 87   0.7008812428 0.299118757 zero Group1 189 1048   92 201 0.484615385
## 167  0.6990706921 0.300929308  one Group1 190 1048   92 200 0.487179487
## 107  0.6990154386 0.300984561  one Group1 191 1048   92 199 0.489743590
## 1111 0.6970552206 0.302944779 zero Group1 191 1047   93 199 0.489743590
## 1074 0.6963350773 0.303664923 zero Group1 191 1046   94 199 0.489743590
## 1173 0.6927247047 0.307275295 zero Group1 191 1045   95 199 0.489743590
## 1093 0.6919414401 0.308058560  one Group1 192 1045   95 198 0.492307692
## 1133 0.6918260455 0.308173954  one Group1 193 1045   95 197 0.494871795
## 1104 0.6917017698 0.308298230 zero Group1 193 1044   96 197 0.494871795
## 165  0.6908303499 0.309169650  one Group1 194 1044   96 196 0.497435897
## 1214 0.6863233447 0.313676655  one Group1 195 1044   96 195 0.500000000
## 749  0.6858627796 0.314137220 zero Group1 195 1043   97 195 0.500000000
## 645  0.6840546131 0.315945387  one Group1 196 1043   97 194 0.502564103
## 920  0.6832974553 0.316702545  one Group1 197 1043   97 193 0.505128205
## 80   0.6831815839 0.316818416  one Group1 198 1043   97 192 0.507692308
## 1510 0.6829461455 0.317053854 zero Group1 198 1042   98 192 0.507692308
## 376  0.6827571392 0.317242861 zero Group1 198 1041   99 192 0.507692308
## 267  0.6810042262 0.318995774 zero Group1 198 1040  100 192 0.507692308
## 1127 0.6809256673 0.319074333  one Group1 199 1040  100 191 0.510256410
## 750  0.6795301437 0.320469856 zero Group1 199 1039  101 191 0.510256410
## 646  0.6777840853 0.322215915  one Group1 200 1039  101 190 0.512820513
## 1005 0.6744751334 0.325524867  one Group1 201 1039  101 189 0.515384615
## 8    0.6711628437 0.328837156  one Group1 202 1039  101 188 0.517948718
## 1081 0.6696760058 0.330323994  one Group1 203 1039  101 187 0.520512821
## 1059 0.6681255698 0.331874430 zero Group1 203 1038  102 187 0.520512821
## 736  0.6680040359 0.331995964 zero Group1 203 1037  103 187 0.520512821
## 235  0.6558440924 0.344155908  one Group1 204 1037  103 186 0.523076923
## 758  0.6556643248 0.344335675  one Group1 205 1037  103 185 0.525641026
## 140  0.6530871391 0.346912861  one Group1 206 1037  103 184 0.528205128
## 745  0.6505900621 0.349409938 zero Group1 206 1036  104 184 0.528205128
## 642  0.6505662203 0.349433780  one Group1 207 1036  104 183 0.530769231
## 495  0.6504657269 0.349534273 zero Group1 207 1035  105 183 0.530769231
## 1105 0.6490451694 0.350954831 zero Group1 207 1034  106 183 0.530769231
## 109  0.6464240551 0.353575945 zero Group1 207 1033  107 183 0.530769231
## 950  0.6453327537 0.354667246 zero Group1 207 1032  108 183 0.530769231
## 571  0.6440755725 0.355924428 zero Group1 207 1031  109 183 0.530769231
## 244  0.6375985146 0.362401485 zero Group1 207 1030  110 183 0.530769231
## 1007 0.6374825239 0.362517476  one Group1 208 1030  110 182 0.533333333
## 586  0.6367069483 0.363293052 zero Group1 208 1029  111 182 0.533333333
## 476  0.6366456151 0.363354385  one Group1 209 1029  111 181 0.535897436
## 884  0.6334192753 0.366580725  one Group1 210 1029  111 180 0.538461538
## 1468 0.6307415366 0.369258463 zero Group1 210 1028  112 180 0.538461538
## 6    0.6295298338 0.370470166 zero Group1 210 1027  113 180 0.538461538
## 1012 0.6293238997 0.370676100 zero Group1 210 1026  114 180 0.538461538
## 250  0.6289593577 0.371040642  one Group1 211 1026  114 179 0.541025641
## 964  0.6288280487 0.371171951  one Group1 212 1026  114 178 0.543589744
## 1003 0.6273794770 0.372620523  one Group1 213 1026  114 177 0.546153846
## 572  0.6272938251 0.372706175 zero Group1 213 1025  115 177 0.546153846
## 201  0.6261491776 0.373850822  one Group1 214 1025  115 176 0.548717949
## 1513 0.6251652241 0.374834776 zero Group1 214 1024  116 176 0.548717949
## 238  0.6243036985 0.375696301  one Group1 215 1024  116 175 0.551282051
## 1508 0.6242353320 0.375764668 zero Group1 215 1023  117 175 0.551282051
## 1064 0.6212078333 0.378792167 zero Group1 215 1022  118 175 0.551282051
## 361  0.6207607985 0.379239202 zero Group1 215 1021  119 175 0.551282051
## 219  0.6206325889 0.379367411  one Group1 216 1021  119 174 0.553846154
## 474  0.6175867319 0.382413268  one Group1 217 1021  119 173 0.556410256
## 1530 0.6166055799 0.383394420  one Group1 218 1021  119 172 0.558974359
## 1418 0.6156299114 0.384370089 zero Group1 218 1020  120 172 0.558974359
## 75   0.6143242717 0.385675728  one Group1 219 1020  120 171 0.561538462
## 1349 0.6132142544 0.386785746 zero Group1 219 1019  121 171 0.561538462
## 1219 0.6117970347 0.388202965 zero Group1 219 1018  122 171 0.561538462
## 804  0.6116287112 0.388371289 zero Group1 219 1017  123 171 0.561538462
## 969  0.6108934283 0.389106572  one Group1 220 1017  123 170 0.564102564
## 1092 0.6108699441 0.389130056  one Group1 221 1017  123 169 0.566666667
## 1431 0.6089057922 0.391094208 zero Group1 221 1016  124 169 0.566666667
## 1448 0.6083808541 0.391619146  one Group1 222 1016  124 168 0.569230769
## 640  0.6070984006 0.392901599  one Group1 223 1016  124 167 0.571794872
## 44   0.6070715189 0.392928481  one Group1 224 1016  124 166 0.574358974
## 1268 0.6067386866 0.393261313 zero Group1 224 1015  125 166 0.574358974
## 234  0.6062564254 0.393743575 zero Group1 224 1014  126 166 0.574358974
## 603  0.6058117747 0.394188225  one Group1 225 1014  126 165 0.576923077
## 1351 0.6056246758 0.394375324 zero Group1 225 1013  127 165 0.576923077
## 317  0.6029077172 0.397092283 zero Group1 225 1012  128 165 0.576923077
## 189  0.6002602577 0.399739742  one Group1 226 1012  128 164 0.579487179
## 1367 0.5982384086 0.401761591  one Group1 227 1012  128 163 0.582051282
## 691  0.5971949100 0.402805090 zero Group1 227 1011  129 163 0.582051282
## 897  0.5959054828 0.404094517 zero Group1 227 1010  130 163 0.582051282
## 666  0.5932736993 0.406726301 zero Group1 227 1009  131 163 0.582051282
## 147  0.5909942389 0.409005761 zero Group1 227 1008  132 163 0.582051282
## 152  0.5907677412 0.409232259 zero Group1 227 1007  133 163 0.582051282
## 377  0.5881996155 0.411800385 zero Group1 227 1006  134 163 0.582051282
## 558  0.5875552893 0.412444711 zero Group1 227 1005  135 163 0.582051282
## 190  0.5865175724 0.413482428 zero Group1 227 1004  136 163 0.582051282
## 99   0.5862012506 0.413798749  one Group1 228 1004  136 162 0.584615385
## 1067 0.5856146216 0.414385378 zero Group1 228 1003  137 162 0.584615385
## 1048 0.5849279165 0.415072083 zero Group1 228 1002  138 162 0.584615385
## 1320 0.5829731822 0.417026818 zero Group1 228 1001  139 162 0.584615385
## 133  0.5825783610 0.417421639  one Group1 229 1001  139 161 0.587179487
## 1115 0.5795783401 0.420421660 zero Group1 229 1000  140 161 0.587179487
## 1090 0.5773097873 0.422690213  one Group1 230 1000  140 160 0.589743590
## 1366 0.5772570372 0.422742963  one Group1 231 1000  140 159 0.592307692
## 205  0.5739925504 0.426007450 zero Group1 231  999  141 159 0.592307692
## 142  0.5724267960 0.427573204 zero Group1 231  998  142 159 0.592307692
## 1234 0.5711011887 0.428898811 zero Group1 231  997  143 159 0.592307692
## 1452 0.5680834055 0.431916595  one Group1 232  997  143 158 0.594871795
## 117  0.5680070519 0.431992948  one Group1 233  997  143 157 0.597435897
## 1296 0.5675631166 0.432436883 zero Group1 233  996  144 157 0.597435897
## 710  0.5664150715 0.433584929 zero Group1 233  995  145 157 0.597435897
## 1311 0.5649800301 0.435019970 zero Group1 233  994  146 157 0.597435897
## 962  0.5648996830 0.435100317  one Group1 234  994  146 156 0.600000000
## 16   0.5644633174 0.435536683 zero Group1 234  993  147 156 0.600000000
## 521  0.5629965067 0.437003493  one Group1 235  993  147 155 0.602564103
## 1374 0.5613406897 0.438659310  one Group1 236  993  147 154 0.605128205
## 942  0.5605122447 0.439487755 zero Group1 236  992  148 154 0.605128205
## 438  0.5602072477 0.439792752 zero Group1 236  991  149 154 0.605128205
## 1429 0.5592136979 0.440786302 zero Group1 236  990  150 154 0.605128205
## 760  0.5590730309 0.440926969  one Group1 237  990  150 153 0.607692308
## 465  0.5576518178 0.442348182 zero Group1 237  989  151 153 0.607692308
## 324  0.5573863983 0.442613602 zero Group1 237  988  152 153 0.607692308
## 600  0.5571204424 0.442879558  one Group1 238  988  152 152 0.610256410
## 326  0.5570009351 0.442999065 zero Group1 238  987  153 152 0.610256410
## 901  0.5565384626 0.443461537 zero Group1 238  986  154 152 0.610256410
## 406  0.5511970520 0.448802948  one Group1 239  986  154 151 0.612820513
## 1011 0.5496384501 0.450361550  one Group1 240  986  154 150 0.615384615
## 1171 0.5451254845 0.454874516 zero Group1 240  985  155 150 0.615384615
## 649  0.5438522100 0.456147790 zero Group1 240  984  156 150 0.615384615
## 1285 0.5409435630 0.459056437  one Group1 241  984  156 149 0.617948718
## 801  0.5366396308 0.463360369 zero Group1 241  983  157 149 0.617948718
## 768  0.5349571705 0.465042830  one Group1 242  983  157 148 0.620512821
## 1144 0.5348858833 0.465114117 zero Group1 242  982  158 148 0.620512821
## 654  0.5330784917 0.466921508 zero Group1 242  981  159 148 0.620512821
## 979  0.5320470333 0.467952967 zero Group1 242  980  160 148 0.620512821
## 1030 0.5314285159 0.468571484 zero Group1 242  979  161 148 0.620512821
## 427  0.5303879380 0.469612062 zero Group1 242  978  162 148 0.620512821
## 321  0.5236213207 0.476378679 zero Group1 242  977  163 148 0.620512821
## 1274 0.5222185254 0.477781475 zero Group1 242  976  164 148 0.620512821
## 338  0.5169923902 0.483007610 zero Group1 242  975  165 148 0.620512821
## 1190 0.5162340999 0.483765900 zero Group1 242  974  166 148 0.620512821
## 1396 0.5149149299 0.485085070 zero Group1 242  973  167 148 0.620512821
## 37   0.5148769021 0.485123098 zero Group1 242  972  168 148 0.620512821
## 683  0.5148059130 0.485194087 zero Group1 242  971  169 148 0.620512821
## 677  0.5142717361 0.485728264 zero Group1 242  970  170 148 0.620512821
## 1254 0.5125901699 0.487409830  one Group1 243  970  170 147 0.623076923
## 1489 0.5111204386 0.488879561 zero Group1 243  969  171 147 0.623076923
## 94   0.5101562142 0.489843786 zero Group1 243  968  172 147 0.623076923
## 664  0.5071185231 0.492881477 zero Group1 243  967  173 147 0.623076923
## 47   0.5066046119 0.493395388 zero Group1 243  966  174 147 0.623076923
## 1389 0.5030969977 0.496903002 zero Group1 243  965  175 147 0.623076923
## 358  0.5026690364 0.497330964 zero Group1 243  964  176 147 0.623076923
## 748  0.5024485588 0.497551441 zero Group1 243  963  177 147 0.623076923
## 1417 0.4998982251 0.500101775 zero Group1 243  962  178 147 0.623076923
## 227  0.4983546734 0.501645327  one Group1 244  962  178 146 0.625641026
## 943  0.4975412488 0.502458751 zero Group1 244  961  179 146 0.625641026
## 1065 0.4952118099 0.504788190 zero Group1 244  960  180 146 0.625641026
## 1006 0.4927668273 0.507233173  one Group1 245  960  180 145 0.628205128
## 837  0.4923639297 0.507636070 zero Group1 245  959  181 145 0.628205128
## 845  0.4913594127 0.508640587  one Group1 246  959  181 144 0.630769231
## 371  0.4880343080 0.511965692 zero Group1 246  958  182 144 0.630769231
## 451  0.4868005812 0.513199419 zero Group1 246  957  183 144 0.630769231
## 271  0.4859778881 0.514022112 zero Group1 246  956  184 144 0.630769231
## 437  0.4851044118 0.514895588 zero Group1 246  955  185 144 0.630769231
## 622  0.4849936962 0.515006304 zero Group1 246  954  186 144 0.630769231
## 1390 0.4839104414 0.516089559 zero Group1 246  953  187 144 0.630769231
## 116  0.4836231470 0.516376853 zero Group1 246  952  188 144 0.630769231
## 254  0.4805287719 0.519471228 zero Group1 246  951  189 144 0.630769231
## 1327 0.4804033935 0.519596606  one Group1 247  951  189 143 0.633333333
## 543  0.4797695279 0.520230472 zero Group1 247  950  190 143 0.633333333
## 161  0.4793631732 0.520636827 zero Group1 247  949  191 143 0.633333333
## 1484 0.4788236916 0.521176308 zero Group1 247  948  192 143 0.633333333
## 854  0.4742590189 0.525740981 zero Group1 247  947  193 143 0.633333333
## 1151 0.4742016494 0.525798351 zero Group1 247  946  194 143 0.633333333
## 268  0.4714977145 0.528502285 zero Group1 247  945  195 143 0.633333333
## 353  0.4695370495 0.530462950  one Group1 248  945  195 142 0.635897436
## 692  0.4694262743 0.530573726 zero Group1 248  944  196 142 0.635897436
## 401  0.4691489339 0.530851066  one Group1 249  944  196 141 0.638461538
## 123  0.4681902528 0.531809747 zero Group1 249  943  197 141 0.638461538
## 788  0.4680367708 0.531963229 zero Group1 249  942  198 141 0.638461538
## 523  0.4670462310 0.532953769  one Group1 250  942  198 140 0.641025641
## 635  0.4660780132 0.533921987  one Group1 251  942  198 139 0.643589744
## 561  0.4655823708 0.534417629 zero Group1 251  941  199 139 0.643589744
## 430  0.4635081589 0.536491841 zero Group1 251  940  200 139 0.643589744
## 1189 0.4632288814 0.536771119 zero Group1 251  939  201 139 0.643589744
## 510  0.4625976086 0.537402391 zero Group1 251  938  202 139 0.643589744
## 682  0.4623478353 0.537652165 zero Group1 251  937  203 139 0.643589744
## 1458 0.4605519772 0.539448023  one Group1 252  937  203 138 0.646153846
## 971  0.4605166316 0.539483368  one Group1 253  937  203 137 0.648717949
## 266  0.4601630270 0.539836973 zero Group1 253  936  204 137 0.648717949
## 868  0.4584154189 0.541584581 zero Group1 253  935  205 137 0.648717949
## 1245 0.4573592544 0.542640746  one Group1 254  935  205 136 0.651282051
## 1116 0.4564659595 0.543534040 zero Group1 254  934  206 136 0.651282051
## 215  0.4563452601 0.543654740 zero Group1 254  933  207 136 0.651282051
## 31   0.4557668567 0.544233143 zero Group1 254  932  208 136 0.651282051
## 944  0.4552298486 0.544770151 zero Group1 254  931  209 136 0.651282051
## 863  0.4548003972 0.545199603 zero Group1 254  930  210 136 0.651282051
## 362  0.4527397156 0.547260284 zero Group1 254  929  211 136 0.651282051
## 1237 0.4524458349 0.547554165 zero Group1 254  928  212 136 0.651282051
## 1310 0.4500915706 0.549908429 zero Group1 254  927  213 136 0.651282051
## 496  0.4500362873 0.549963713 zero Group1 254  926  214 136 0.651282051
## 1091 0.4474055469 0.552594453  one Group1 255  926  214 135 0.653846154
## 1381 0.4457742870 0.554225713 zero Group1 255  925  215 135 0.653846154
## 1263 0.4443600774 0.555639923 zero Group1 255  924  216 135 0.653846154
## 1292 0.4442347884 0.555765212 zero Group1 255  923  217 135 0.653846154
## 439  0.4441864192 0.555813581 zero Group1 255  922  218 135 0.653846154
## 1427 0.4439511597 0.556048840 zero Group1 255  921  219 135 0.653846154
## 921  0.4435592294 0.556440771 zero Group1 255  920  220 135 0.653846154
## 819  0.4435042441 0.556495756 zero Group1 255  919  221 135 0.653846154
## 339  0.4428375661 0.557162434 zero Group1 255  918  222 135 0.653846154
## 228  0.4421184659 0.557881534 zero Group1 255  917  223 135 0.653846154
## 272  0.4392777085 0.560722291  one Group1 256  917  223 134 0.656410256
## 1241 0.4360925853 0.563907415 zero Group1 256  916  224 134 0.656410256
## 1449 0.4343250096 0.565674990  one Group1 257  916  224 133 0.658974359
## 1412 0.4330576062 0.566942394 zero Group1 257  915  225 133 0.658974359
## 223  0.4326856732 0.567314327 zero Group1 257  914  226 133 0.658974359
## 1294 0.4326286316 0.567371368 zero Group1 257  913  227 133 0.658974359
## 890  0.4320981205 0.567901880  one Group1 258  913  227 132 0.661538462
## 1109 0.4318467677 0.568153232 zero Group1 258  912  228 132 0.661538462
## 1375 0.4315653145 0.568434685  one Group1 259  912  228 131 0.664102564
## 1060 0.4295934141 0.570406586 zero Group1 259  911  229 131 0.664102564
## 239  0.4234931767 0.576506823  one Group1 260  911  229 130 0.666666667
## 1010 0.4231294692 0.576870531  one Group1 261  911  229 129 0.669230769
## 301  0.4230963588 0.576903641 zero Group1 261  910  230 129 0.669230769
## 204  0.4228290021 0.577170998  one Group1 262  910  230 128 0.671794872
## 907  0.4194630384 0.580536962 zero Group1 262  909  231 128 0.671794872
## 354  0.4193266928 0.580673307  one Group1 263  909  231 127 0.674358974
## 432  0.4192000031 0.580799997 zero Group1 263  908  232 127 0.674358974
## 258  0.4172356427 0.582764357  one Group1 264  908  232 126 0.676923077
## 1479 0.4164015055 0.583598495 zero Group1 264  907  233 126 0.676923077
## 1337 0.4158894420 0.584110558  one Group1 265  907  233 125 0.679487179
## 577  0.4147373140 0.585262686 zero Group1 265  906  234 125 0.679487179
## 963  0.4142445922 0.585755408  one Group1 266  906  234 124 0.682051282
## 850  0.4137533009 0.586246699  one Group1 267  906  234 123 0.684615385
## 141  0.4108425677 0.589157432 zero Group1 267  905  235 123 0.684615385
## 1486 0.4101185799 0.589881420 zero Group1 267  904  236 123 0.684615385
## 210  0.4085822403 0.591417760 zero Group1 267  903  237 123 0.684615385
## 734  0.4061973095 0.593802691 zero Group1 267  902  238 123 0.684615385
## 679  0.4044353664 0.595564634 zero Group1 267  901  239 123 0.684615385
## 881  0.4017625749 0.598237425  one Group1 268  901  239 122 0.687179487
## 452  0.3991381824 0.600861818 zero Group1 268  900  240 122 0.687179487
## 265  0.3952851892 0.604714811 zero Group1 268  899  241 122 0.687179487
## 1384 0.3911800086 0.608819991 zero Group1 268  898  242 122 0.687179487
## 776  0.3901785612 0.609821439 zero Group1 268  897  243 122 0.687179487
## 46   0.3882980943 0.611701906  one Group1 269  897  243 121 0.689743590
## 1315 0.3881045878 0.611895412 zero Group1 269  896  244 121 0.689743590
## 828  0.3876715302 0.612328470 zero Group1 269  895  245 121 0.689743590
## 1049 0.3870055377 0.612994462 zero Group1 269  894  246 121 0.689743590
## 1098 0.3866180182 0.613381982 zero Group1 269  893  247 121 0.689743590
## 42   0.3863007128 0.613699287 zero Group1 269  892  248 121 0.689743590
## 798  0.3851904273 0.614809573  one Group1 270  892  248 120 0.692307692
## 707  0.3850658238 0.614934176 zero Group1 270  891  249 120 0.692307692
## 289  0.3849395812 0.615060419 zero Group1 270  890  250 120 0.692307692
## 1405 0.3843744993 0.615625501 zero Group1 270  889  251 120 0.692307692
## 949  0.3831858337 0.616814166 zero Group1 270  888  252 120 0.692307692
## 609  0.3829108775 0.617089123 zero Group1 270  887  253 120 0.692307692
## 1154 0.3812096417 0.618790358 zero Group1 270  886  254 120 0.692307692
## 1434 0.3811435401 0.618856460 zero Group1 270  885  255 120 0.692307692
## 894  0.3805875182 0.619412482 zero Group1 270  884  256 120 0.692307692
## 1509 0.3789360821 0.621063918 zero Group1 270  883  257 120 0.692307692
## 606  0.3786431253 0.621356875  one Group1 271  883  257 119 0.694871795
## 695  0.3783760071 0.621623993 zero Group1 271  882  258 119 0.694871795
## 68   0.3782859445 0.621714056  one Group1 272  882  258 118 0.697435897
## 727  0.3780406713 0.621959329  one Group1 273  882  258 117 0.700000000
## 821  0.3774386942 0.622561306 zero Group1 273  881  259 117 0.700000000
## 160  0.3771030009 0.622896999 zero Group1 273  880  260 117 0.700000000
## 662  0.3767971694 0.623202831 zero Group1 273  879  261 117 0.700000000
## 766  0.3737927675 0.626207232  one Group1 274  879  261 116 0.702564103
## 500  0.3726031482 0.627396852 zero Group1 274  878  262 116 0.702564103
## 74   0.3724024594 0.627597541 zero Group1 274  877  263 116 0.702564103
## 1492 0.3714091182 0.628590882 zero Group1 274  876  264 116 0.702564103
## 516  0.3711459339 0.628854066  one Group1 275  876  264 115 0.705128205
## 574  0.3707458079 0.629254192 zero Group1 275  875  265 115 0.705128205
## 1494 0.3702904880 0.629709512 zero Group1 275  874  266 115 0.705128205
## 259  0.3687840998 0.631215900 zero Group1 275  873  267 115 0.705128205
## 78   0.3672012687 0.632798731 zero Group1 275  872  268 115 0.705128205
## 1474 0.3665151298 0.633484870 zero Group1 275  871  269 115 0.705128205
## 1050 0.3655455112 0.634454489 zero Group1 275  870  270 115 0.705128205
## 1040 0.3641758859 0.635824114  one Group1 276  870  270 114 0.707692308
## 1228 0.3637791276 0.636220872 zero Group1 276  869  271 114 0.707692308
## 291  0.3626614809 0.637338519 zero Group1 276  868  272 114 0.707692308
## 178  0.3596589565 0.640341043 zero Group1 276  867  273 114 0.707692308
## 139  0.3568225205 0.643177480  one Group1 277  867  273 113 0.710256410
## 73   0.3562467992 0.643753201 zero Group1 277  866  274 113 0.710256410
## 357  0.3547628820 0.645237118 zero Group1 277  865  275 113 0.710256410
## 113  0.3525911272 0.647408873 zero Group1 277  864  276 113 0.710256410
## 1524 0.3510932624 0.648906738 zero Group1 277  863  277 113 0.710256410
## 1226 0.3510782719 0.648921728 zero Group1 277  862  278 113 0.710256410
## 245  0.3500960171 0.649903983 zero Group1 277  861  279 113 0.710256410
## 524  0.3493255079 0.650674492  one Group1 278  861  279 112 0.712820513
## 243  0.3492282629 0.650771737  one Group1 279  861  279 111 0.715384615
## 1271 0.3476107419 0.652389258 zero Group1 279  860  280 111 0.715384615
## 663  0.3441997766 0.655800223 zero Group1 279  859  281 111 0.715384615
## 1336 0.3439365923 0.656063408  one Group1 280  859  281 110 0.717948718
## 1196 0.3422770798 0.657722920 zero Group1 280  858  282 110 0.717948718
## 318  0.3418684006 0.658131599 zero Group1 280  857  283 110 0.717948718
## 839  0.3416658938 0.658334106  one Group1 281  857  283 109 0.720512821
## 19   0.3416304290 0.658369571 zero Group1 281  856  284 109 0.720512821
## 638  0.3413099051 0.658690095  one Group1 282  856  284 108 0.723076923
## 1084 0.3411159515 0.658884048  one Group1 283  856  284 107 0.725641026
## 883  0.3398758173 0.660124183  one Group1 284  856  284 106 0.728205128
## 122  0.3386514485 0.661348552  one Group1 285  856  284 105 0.730769231
## 249  0.3379371464 0.662062854 zero Group1 285  855  285 105 0.730769231
## 14   0.3352127671 0.664787233 zero Group1 285  854  286 105 0.730769231
## 232  0.3334366381 0.666563362 zero Group1 285  853  287 105 0.730769231
## 938  0.3327477872 0.667252213 zero Group1 285  852  288 105 0.730769231
## 652  0.3311963975 0.668803602 zero Group1 285  851  289 105 0.730769231
## 871  0.3279173076 0.672082692 zero Group1 285  850  290 105 0.730769231
## 518  0.3269104958 0.673089504  one Group1 286  850  290 104 0.733333333
## 589  0.3254596889 0.674540311 zero Group1 286  849  291 104 0.733333333
## 66   0.3237721026 0.676227897 zero Group1 286  848  292 104 0.733333333
## 277  0.3229755759 0.677024424  one Group1 287  848  292 103 0.735897436
## 1066 0.3212937713 0.678706229 zero Group1 287  847  293 103 0.735897436
## 1457 0.3212043345 0.678795666  one Group1 288  847  293 102 0.738461538
## 700  0.3192693591 0.680730641 zero Group1 288  846  294 102 0.738461538
## 30   0.3184500933 0.681549907  one Group1 289  846  294 101 0.741025641
## 298  0.3179899454 0.682010055 zero Group1 289  845  295 101 0.741025641
## 283  0.3175106049 0.682489395 zero Group1 289  844  296 101 0.741025641
## 694  0.3171315491 0.682868451 zero Group1 289  843  297 101 0.741025641
## 848  0.3170445263 0.682955474  one Group1 290  843  297 100 0.743589744
## 1287 0.3145301640 0.685469836 zero Group1 290  842  298 100 0.743589744
## 180  0.3138688803 0.686131120 zero Group1 290  841  299 100 0.743589744
## 1469 0.3138085604 0.686191440 zero Group1 290  840  300 100 0.743589744
## 172  0.3132448792 0.686755121 zero Group1 290  839  301 100 0.743589744
## 421  0.3120464981 0.687953502 zero Group1 290  838  302 100 0.743589744
## 49   0.3095445037 0.690455496 zero Group1 290  837  303 100 0.743589744
## 106  0.3092839718 0.690716028 zero Group1 290  836  304 100 0.743589744
## 1057 0.3089053929 0.691094607 zero Group1 290  835  305 100 0.743589744
## 579  0.3079151809 0.692084819 zero Group1 290  834  306 100 0.743589744
## 85   0.3057290912 0.694270909  one Group1 291  834  306  99 0.746153846
## 869  0.3039186895 0.696081311 zero Group1 291  833  307  99 0.746153846
## 22   0.3033323288 0.696667671 zero Group1 291  832  308  99 0.746153846
## 280  0.3032037616 0.696796238  one Group1 292  832  308  98 0.748717949
## 216  0.3019715846 0.698028415 zero Group1 292  831  309  98 0.748717949
## 807  0.3015617728 0.698438227 zero Group1 292  830  310  98 0.748717949
## 1413 0.3006573319 0.699342668 zero Group1 292  829  311  98 0.748717949
## 1044 0.2998626232 0.700137377 zero Group1 292  828  312  98 0.748717949
## 762  0.2995235324 0.700476468  one Group1 293  828  312  97 0.751282051
## 1099 0.2970103920 0.702989608 zero Group1 293  827  313  97 0.751282051
## 144  0.2961697280 0.703830272 zero Group1 293  826  314  97 0.751282051
## 300  0.2959936261 0.704006374 zero Group1 293  825  315  97 0.751282051
## 908  0.2948120832 0.705187917 zero Group1 293  824  316  97 0.751282051
## 930  0.2942721248 0.705727875 zero Group1 293  823  317  97 0.751282051
## 681  0.2905957699 0.709404230 zero Group1 293  822  318  97 0.751282051
## 53   0.2898182273 0.710181773  one Group1 294  822  318  96 0.753846154
## 278  0.2897458673 0.710254133 zero Group1 294  821  319  96 0.753846154
## 1424 0.2876324356 0.712367564 zero Group1 294  820  320  96 0.753846154
## 621  0.2869192064 0.713080794 zero Group1 294  819  321  96 0.753846154
## 183  0.2868442237 0.713155776 zero Group1 294  818  322  96 0.753846154
## 686  0.2860421538 0.713957846 zero Group1 294  817  323  96 0.753846154
## 1150 0.2846589684 0.715341032 zero Group1 294  816  324  96 0.753846154
## 995  0.2844164371 0.715583563 zero Group1 294  815  325  96 0.753846154
## 1029 0.2822554708 0.717744529 zero Group1 294  814  326  96 0.753846154
## 1215 0.2815297246 0.718470275  one Group1 295  814  326  95 0.756410256
## 797  0.2813523412 0.718647659  one Group1 296  814  326  94 0.758974359
## 811  0.2803616226 0.719638377 zero Group1 296  813  327  94 0.758974359
## 1364 0.2797425389 0.720257461  one Group1 297  813  327  93 0.761538462
## 982  0.2777395248 0.722260475 zero Group1 297  812  328  93 0.761538462
## 1169 0.2773645818 0.722635418 zero Group1 297  811  329  93 0.761538462
## 38   0.2764967680 0.723503232 zero Group1 297  810  330  93 0.761538462
## 847  0.2763603628 0.723639637  one Group1 298  810  330  92 0.764102564
## 275  0.2757791877 0.724220812 zero Group1 298  809  331  92 0.764102564
## 394  0.2754985094 0.724501491  one Group1 299  809  331  91 0.766666667
## 9    0.2750129998 0.724987000 zero Group1 299  808  332  91 0.766666667
## 470  0.2745413184 0.725458682 zero Group1 299  807  333  91 0.766666667
## 1174 0.2744403780 0.725559622 zero Group1 299  806  334  91 0.766666667
## 274  0.2743669748 0.725633025  one Group1 300  806  334  90 0.769230769
## 1130 0.2741170824 0.725882918  one Group1 301  806  334  89 0.771794872
## 1047 0.2736823559 0.726317644 zero Group1 301  805  335  89 0.771794872
## 166  0.2734105289 0.726589471 zero Group1 301  804  336  89 0.771794872
## 630  0.2731786668 0.726821333 zero Group1 301  803  337  89 0.771794872
## 514  0.2729989886 0.727001011  one Group1 302  803  337  88 0.774358974
## 1526 0.2729361057 0.727063894  one Group1 303  803  337  87 0.776923077
## 803  0.2718055546 0.728194445 zero Group1 303  802  338  87 0.776923077
## 1499 0.2716289759 0.728371024 zero Group1 303  801  339  87 0.776923077
## 557  0.2711087763 0.728891224 zero Group1 303  800  340  87 0.776923077
## 419  0.2706325650 0.729367435 zero Group1 303  799  341  87 0.776923077
## 41   0.2689417601 0.731058240  one Group1 304  799  341  86 0.779487179
## 220  0.2688833773 0.731116623  one Group1 305  799  341  85 0.782051282
## 1170 0.2671536505 0.732846349 zero Group1 305  798  342  85 0.782051282
## 373  0.2665255070 0.733474493 zero Group1 305  797  343  85 0.782051282
## 578  0.2647099793 0.735290021 zero Group1 305  796  344  85 0.782051282
## 303  0.2644173503 0.735582650 zero Group1 305  795  345  85 0.782051282
## 659  0.2634025812 0.736597419 zero Group1 305  794  346  85 0.782051282
## 221  0.2632779479 0.736722052 zero Group1 305  793  347  85 0.782051282
## 336  0.2613286674 0.738671333 zero Group1 305  792  348  85 0.782051282
## 436  0.2603887916 0.739611208 zero Group1 305  791  349  85 0.782051282
## 334  0.2593197823 0.740680218 zero Group1 305  790  350  85 0.782051282
## 422  0.2580811679 0.741918832 zero Group1 305  789  351  85 0.782051282
## 1069 0.2580308616 0.741969138 zero Group1 305  788  352  85 0.782051282
## 230  0.2574815750 0.742518425 zero Group1 305  787  353  85 0.782051282
## 922  0.2570662796 0.742933720 zero Group1 305  786  354  85 0.782051282
## 57   0.2560012639 0.743998736  one Group1 306  786  354  84 0.784615385
## 187  0.2559681535 0.744031847 zero Group1 306  785  355  84 0.784615385
## 1132 0.2558664680 0.744133532  one Group1 307  785  355  83 0.787179487
## 992  0.2554696798 0.744530320 zero Group1 307  784  356  83 0.787179487
## 1359 0.2552336752 0.744766325 zero Group1 307  783  357  83 0.787179487
## 415  0.2550246716 0.744975328 zero Group1 307  782  358  83 0.787179487
## 817  0.2547948658 0.745205134 zero Group1 307  781  359  83 0.787179487
## 605  0.2546531856 0.745346814  one Group1 308  781  359  82 0.789743590
## 966  0.2546458244 0.745354176  one Group1 309  781  359  81 0.792307692
## 359  0.2542666793 0.745733321 zero Group1 309  780  360  81 0.792307692
## 742  0.2521754503 0.747824550 zero Group1 309  779  361  81 0.792307692
## 181  0.2520242929 0.747975707 zero Group1 309  778  362  81 0.792307692
## 1211 0.2517695129 0.748230487  one Group1 310  778  362  80 0.794871795
## 453  0.2508689165 0.749131083 zero Group1 310  777  363  80 0.794871795
## 1316 0.2501374483 0.749862552 zero Group1 310  776  364  80 0.794871795
## 790  0.2497075647 0.750292435 zero Group1 310  775  365  80 0.794871795
## 404  0.2496099621 0.750390038  one Group1 311  775  365  79 0.797435897
## 360  0.2493012398 0.750698760 zero Group1 311  774  366  79 0.797435897
## 226  0.2480489314 0.751951069 zero Group1 311  773  367  79 0.797435897
## 570  0.2476318479 0.752368152 zero Group1 311  772  368  79 0.797435897
## 1401 0.2474993467 0.752500653 zero Group1 311  771  369  79 0.797435897
## 708  0.2472377867 0.752762213 zero Group1 311  770  370  79 0.797435897
## 1290 0.2468063384 0.753193662 zero Group1 311  769  371  79 0.797435897
## 713  0.2465004623 0.753499538 zero Group1 311  768  372  79 0.797435897
## 800  0.2457585931 0.754241407 zero Group1 311  767  373  79 0.797435897
## 1454 0.2455608398 0.754439160  one Group1 312  767  373  78 0.800000000
## 1015 0.2455222011 0.754477799 zero Group1 312  766  374  78 0.800000000
## 217  0.2452800125 0.754719988 zero Group1 312  765  375  78 0.800000000
## 1280 0.2446377277 0.755362272 zero Group1 312  764  376  78 0.800000000
## 896  0.2435804307 0.756419569 zero Group1 312  763  377  78 0.800000000
## 1184 0.2434450984 0.756554902 zero Group1 312  762  378  78 0.800000000
## 916  0.2401460558 0.759853944 zero Group1 312  761  379  78 0.800000000
## 1297 0.2398659736 0.760134026 zero Group1 312  760  380  78 0.800000000
## 1362 0.2396072000 0.760392800 zero Group1 312  759  381  78 0.800000000
## 282  0.2391040772 0.760895923  one Group1 313  759  381  77 0.802564103
## 994  0.2355463654 0.764453635 zero Group1 313  758  382  77 0.802564103
## 711  0.2349097431 0.765090257 zero Group1 313  757  383  77 0.802564103
## 21   0.2342820913 0.765717909 zero Group1 313  756  384  77 0.802564103
## 1068 0.2327829152 0.767217085 zero Group1 313  755  385  77 0.802564103
## 1467 0.2326028347 0.767397165 zero Group1 313  754  386  77 0.802564103
## 1252 0.2312757969 0.768724203  one Group1 314  754  386  76 0.805128205
## 945  0.2289411724 0.771058828 zero Group1 314  753  387  76 0.805128205
## 1273 0.2282677740 0.771732226 zero Group1 314  752  388  76 0.805128205
## 200  0.2281535715 0.771846429 zero Group1 314  751  389  76 0.805128205
## 492  0.2238649726 0.776135027 zero Group1 314  750  390  76 0.805128205
## 1409 0.2217103988 0.778289601 zero Group1 314  749  391  76 0.805128205
## 617  0.2214113474 0.778588653 zero Group1 314  748  392  76 0.805128205
## 151  0.2213506550 0.778649345 zero Group1 314  747  393  76 0.805128205
## 698  0.2203560621 0.779643938 zero Group1 314  746  394  76 0.805128205
## 941  0.2195127606 0.780487239 zero Group1 314  745  395  76 0.805128205
## 548  0.2187615633 0.781238437 zero Group1 314  744  396  76 0.805128205
## 1269 0.2184569240 0.781543076 zero Group1 314  743  397  76 0.805128205
## 486  0.2182542235 0.781745777 zero Group1 314  742  398  76 0.805128205
## 98   0.2180294096 0.781970590  one Group1 315  742  398  75 0.807692308
## 1123 0.2178539187 0.782146081  one Group1 316  742  398  74 0.810256410
## 93   0.2142582089 0.785741791 zero Group1 316  741  399  74 0.810256410
## 1388 0.2128806710 0.787119329 zero Group1 316  740  400  74 0.810256410
## 527  0.2118846029 0.788115397 zero Group1 316  739  401  74 0.810256410
## 1095 0.2115429789 0.788457021 zero Group1 316  738  402  74 0.810256410
## 1160 0.2113724798 0.788627520 zero Group1 316  737  403  74 0.810256410
## 584  0.2112618536 0.788738146 zero Group1 316  736  404  74 0.810256410
## 159  0.2101192027 0.789880797  one Group1 317  736  404  73 0.812820513
## 305  0.2082431912 0.791756809 zero Group1 317  735  405  73 0.812820513
## 330  0.2081064880 0.791893512 zero Group1 317  734  406  73 0.812820513
## 316  0.2071199864 0.792880014 zero Group1 317  733  407  73 0.812820513
## 471  0.2050469369 0.794953063 zero Group1 317  732  408  73 0.812820513
## 1001 0.2046593428 0.795340657  one Group1 318  732  408  72 0.815384615
## 533  0.2034287304 0.796571270 zero Group1 318  731  409  72 0.815384615
## 1163 0.2027899474 0.797210053  one Group1 319  731  409  71 0.817948718
## 1464 0.2015014142 0.798498586 zero Group1 319  730  410  71 0.817948718
## 197  0.2013538033 0.798646197 zero Group1 319  729  411  71 0.817948718
## 802  0.2012351900 0.798764810 zero Group1 319  728  412  71 0.817948718
## 1438 0.2006509602 0.799349040 zero Group1 319  727  413  71 0.817948718
## 464  0.1999373287 0.800062671 zero Group1 319  726  414  71 0.817948718
## 1490 0.1990199089 0.800980091 zero Group1 319  725  415  71 0.817948718
## 10   0.1988877058 0.801112294 zero Group1 319  724  416  71 0.817948718
## 728  0.1985260397 0.801473960 zero Group1 319  723  417  71 0.817948718
## 1423 0.1975454688 0.802454531 zero Group1 319  722  418  71 0.817948718
## 1240 0.1962409765 0.803759024 zero Group1 319  721  419  71 0.817948718
## 556  0.1959727556 0.804027244 zero Group1 319  720  420  71 0.817948718
## 270  0.1955580711 0.804441929 zero Group1 319  719  421  71 0.817948718
## 1323 0.1953782439 0.804621756 zero Group1 319  718  422  71 0.817948718
## 841  0.1923743486 0.807625651  one Group1 320  718  422  70 0.820512821
## 1232 0.1920493692 0.807950631 zero Group1 320  717  423  70 0.820512821
## 564  0.1918688118 0.808131188 zero Group1 320  716  424  70 0.820512821
## 20   0.1918222904 0.808177710 zero Group1 320  715  425  70 0.820512821
## 644  0.1910785139 0.808921486  one Group1 321  715  425  69 0.823076923
## 1284 0.1909923702 0.809007630  one Group1 322  715  425  68 0.825641026
## 157  0.1909785271 0.809021473  one Group1 323  715  425  67 0.828205128
## 1408 0.1900582165 0.809941784 zero Group1 323  714  426  67 0.828205128
## 457  0.1898759156 0.810124084 zero Group1 323  713  427  67 0.828205128
## 910  0.1890547425 0.810945258 zero Group1 323  712  428  67 0.828205128
## 154  0.1862604767 0.813739523  one Group1 324  712  428  66 0.830769231
## 1124 0.1860947907 0.813905209  one Group1 325  712  428  65 0.833333333
## 699  0.1857115030 0.814288497 zero Group1 325  711  429  65 0.833333333
## 13   0.1846946776 0.815305322  one Group1 326  711  429  64 0.835897436
## 129  0.1845747679 0.815425232 zero Group1 326  710  430  64 0.835897436
## 1282 0.1845684946 0.815431505 zero Group1 326  709  431  64 0.835897436
## 873  0.1841517091 0.815848291 zero Group1 326  708  432  64 0.835897436
## 96   0.1825795472 0.817420453 zero Group1 326  706  434  64 0.835897436
## 974  0.1825795472 0.817420453 zero Group1 326  706  434  64 0.835897436
## 384  0.1820884049 0.817911595 zero Group1 326  705  435  64 0.835897436
## 1515 0.1817530692 0.818246931 zero Group1 326  704  436  64 0.835897436
## 1379 0.1816753596 0.818324640 zero Group1 326  703  437  64 0.835897436
## 939  0.1813876927 0.818612307 zero Group1 326  702  438  64 0.835897436
## 292  0.1809225082 0.819077492 zero Group1 326  701  439  64 0.835897436
## 1114 0.1803840697 0.819615930 zero Group1 326  700  440  64 0.835897436
## 805  0.1800173223 0.819982678 zero Group1 326  699  441  64 0.835897436
## 815  0.1789400578 0.821059942 zero Group1 326  698  442  64 0.835897436
## 51   0.1781132072 0.821886793 zero Group1 326  697  443  64 0.835897436
## 1440 0.1763070971 0.823692903 zero Group1 326  696  444  64 0.835897436
## 1179 0.1758998781 0.824100122 zero Group1 326  695  445  64 0.835897436
## 88   0.1756767333 0.824323267  one Group1 327  695  445  63 0.838461538
## 1394 0.1749638766 0.825036123 zero Group1 327  694  446  63 0.838461538
## 63   0.1741598547 0.825840145  one Group1 328  694  446  62 0.841025641
## 186  0.1741309464 0.825869054 zero Group1 328  693  447  62 0.841025641
## 1080 0.1726406813 0.827359319 zero Group1 328  692  448  62 0.841025641
## 554  0.1722559482 0.827744052  one Group1 329  692  448  61 0.843589744
## 369  0.1711791754 0.828820825 zero Group1 329  691  449  61 0.843589744
## 696  0.1711194515 0.828880548 zero Group1 329  690  450  61 0.843589744
## 310  0.1705536842 0.829446316 zero Group1 329  689  451  61 0.843589744
## 781  0.1705271900 0.829472810 zero Group1 329  688  452  61 0.843589744
## 297  0.1701770276 0.829822972 zero Group1 329  687  453  61 0.843589744
## 522  0.1699155122 0.830084488  one Group1 330  687  453  60 0.846153846
## 1139 0.1699047238 0.830095276 zero Group1 330  686  454  60 0.846153846
## 902  0.1692514271 0.830748573 zero Group1 330  685  455  60 0.846153846
## 1403 0.1687374264 0.831262574 zero Group1 330  684  456  60 0.846153846
## 585  0.1684349477 0.831565052 zero Group1 330  683  457  60 0.846153846
## 957  0.1680811346 0.831918865 zero Group1 330  682  458  60 0.846153846
## 935  0.1679022610 0.832097739 zero Group1 330  681  459  60 0.846153846
## 576  0.1674823016 0.832517698 zero Group1 330  680  460  60 0.846153846
## 58   0.1672594100 0.832740590 zero Group1 330  679  461  60 0.846153846
## 1078 0.1658010185 0.834198982 zero Group1 330  678  462  60 0.846153846
## 59   0.1655505747 0.834449425  one Group1 331  678  462  59 0.848717949
## 320  0.1646988988 0.835301101 zero Group1 331  677  463  59 0.848717949
## 872  0.1640901566 0.835909843 zero Group1 331  676  464  59 0.848717949
## 299  0.1634178609 0.836582139 zero Group1 331  675  465  59 0.848717949
## 539  0.1631470323 0.836852968 zero Group1 331  674  466  59 0.848717949
## 1304 0.1619206667 0.838079333 zero Group1 331  673  467  59 0.848717949
## 1070 0.1615968645 0.838403136 zero Group1 331  672  468  59 0.848717949
## 751  0.1601071358 0.839892864 zero Group1 331  671  469  59 0.848717949
## 1387 0.1595030278 0.840496972 zero Group1 331  670  470  59 0.848717949
## 1149 0.1579481810 0.842051819 zero Group1 331  669  471  59 0.848717949
## 185  0.1576883942 0.842311606 zero Group1 331  668  472  59 0.848717949
## 1197 0.1576329619 0.842367038 zero Group1 331  667  473  59 0.848717949
## 1295 0.1569796056 0.843020394 zero Group1 331  666  474  59 0.848717949
## 891  0.1560789794 0.843921021 zero Group1 331  665  475  59 0.848717949
## 364  0.1548641175 0.845135882 zero Group1 331  664  476  59 0.848717949
## 757  0.1545169950 0.845483005  one Group1 332  664  476  58 0.851282051
## 851  0.1541622281 0.845837772 zero Group1 332  663  477  58 0.851282051
## 81   0.1537082195 0.846291780 zero Group1 332  662  478  58 0.851282051
## 1046 0.1531293839 0.846870616 zero Group1 332  661  479  58 0.851282051
## 208  0.1531070918 0.846892908  one Group1 333  661  479  57 0.853846154
## 478  0.1509785205 0.849021479  one Group1 334  661  479  56 0.856410256
## 1317 0.1503643543 0.849635646 zero Group1 334  660  480  56 0.856410256
## 1058 0.1498610377 0.850138962 zero Group1 334  659  481  56 0.856410256
## 542  0.1490912288 0.850908771 zero Group1 334  658  482  56 0.856410256
## 493  0.1486295015 0.851370499 zero Group1 334  657  483  56 0.856410256
## 1456 0.1477939636 0.852206036  one Group1 335  657  483  55 0.858974359
## 970  0.1473280936 0.852671906  one Group1 336  657  483  54 0.861538462
## 418  0.1466707736 0.853329226 zero Group1 336  656  484  54 0.861538462
## 560  0.1461407840 0.853859216 zero Group1 336  655  485  54 0.861538462
## 525  0.1460964084 0.853903592 zero Group1 336  654  486  54 0.861538462
## 895  0.1448992789 0.855100721 zero Group1 336  653  487  54 0.861538462
## 899  0.1448335350 0.855166465 zero Group1 336  652  488  54 0.861538462
## 595  0.1443680227 0.855631977  one Group1 337  652  488  53 0.864102564
## 124  0.1430620253 0.856937975 zero Group1 337  651  489  53 0.864102564
## 127  0.1427503079 0.857249692 zero Group1 337  650  490  53 0.864102564
## 1354 0.1403629929 0.859637007 zero Group1 337  649  491  53 0.864102564
## 1348 0.1396702975 0.860329702 zero Group1 337  648  492  53 0.864102564
## 632  0.1396347284 0.860365272 zero Group1 337  647  493  53 0.864102564
## 827  0.1396217197 0.860378280 zero Group1 337  646  494  53 0.864102564
## 15   0.1395317167 0.860468283 zero Group1 337  645  495  53 0.864102564
## 344  0.1394887567 0.860511243 zero Group1 337  644  496  53 0.864102564
## 50   0.1392567903 0.860743210 zero Group1 337  643  497  53 0.864102564
## 779  0.1386964619 0.861303538 zero Group1 337  642  498  53 0.864102564
## 202  0.1364315003 0.863568500 zero Group1 337  641  499  53 0.864102564
## 633  0.1356921345 0.864307866 zero Group1 337  640  500  53 0.864102564
## 1159 0.1356724203 0.864327580 zero Group1 337  639  501  53 0.864102564
## 1039 0.1351496279 0.864850372 zero Group1 337  638  502  53 0.864102564
## 1404 0.1348298937 0.865170106 zero Group1 337  637  503  53 0.864102564
## 905  0.1345594227 0.865440577 zero Group1 337  636  504  53 0.864102564
## 1146 0.1344990581 0.865500942 zero Group1 337  635  505  53 0.864102564
## 459  0.1344767362 0.865523264 zero Group1 337  634  506  53 0.864102564
## 52   0.1334785223 0.866521478  one Group1 338  634  506  52 0.866666667
## 1256 0.1332751364 0.866724864 zero Group1 338  633  507  52 0.866666667
## 248  0.1322005987 0.867799401 zero Group1 338  632  508  52 0.866666667
## 732  0.1320918351 0.867908165 zero Group1 338  631  509  52 0.866666667
## 669  0.1318520010 0.868147999 zero Group1 338  630  510  52 0.866666667
## 959  0.1311756521 0.868824348  one Group1 339  630  510  51 0.869230769
## 1261 0.1308572739 0.869142726 zero Group1 339  629  511  51 0.869230769
## 365  0.1307959557 0.869204044 zero Group1 339  628  512  51 0.869230769
## 688  0.1307303607 0.869269639 zero Group1 339  627  513  51 0.869230769
## 880  0.1294194013 0.870580599  one Group1 340  627  513  50 0.871794872
## 824  0.1283411533 0.871658847 zero Group1 340  626  514  50 0.871794872
## 490  0.1282116920 0.871788308 zero Group1 340  625  515  50 0.871794872
## 314  0.1281585544 0.871841446  one Group1 341  625  515  49 0.874358974
## 97   0.1280052215 0.871994779  one Group1 342  625  515  48 0.876923077
## 573  0.1278062761 0.872193724 zero Group1 342  624  516  48 0.876923077
## 173  0.1270962059 0.872903794 zero Group1 342  623  517  48 0.876923077
## 389  0.1265731156 0.873426884 zero Group1 342  622  518  48 0.876923077
## 134  0.1260619760 0.873938024 zero Group1 342  621  519  48 0.876923077
## 1156 0.1250438988 0.874956101 zero Group1 342  620  520  48 0.876923077
## 1218 0.1233511120 0.876648888 zero Group1 342  619  521  48 0.876923077
## 786  0.1227423102 0.877257690 zero Group1 342  618  522  48 0.876923077
## 1411 0.1227114797 0.877288520 zero Group1 342  617  523  48 0.876923077
## 137  0.1220480725 0.877951927 zero Group1 342  616  524  48 0.876923077
## 284  0.1215435490 0.878456451 zero Group1 342  615  525  48 0.876923077
## 388  0.1205366701 0.879463330 zero Group1 342  614  526  48 0.876923077
## 1193 0.1194692925 0.880530708 zero Group1 342  613  527  48 0.876923077
## 162  0.1194602549 0.880539745 zero Group1 342  612  528  48 0.876923077
## 673  0.1191201955 0.880879804 zero Group1 342  611  529  48 0.876923077
## 1421 0.1184162349 0.881583765 zero Group1 342  610  530  48 0.876923077
## 926  0.1183007434 0.881699257 zero Group1 342  609  531  48 0.876923077
## 1148 0.1182608604 0.881739140 zero Group1 342  608  532  48 0.876923077
## 778  0.1179820821 0.882017918 zero Group1 342  607  533  48 0.876923077
## 309  0.1177706048 0.882229395 zero Group1 342  606  534  48 0.876923077
## 1369 0.1172282249 0.882771775  one Group1 343  606  534  47 0.879487179
## 626  0.1171627864 0.882837214 zero Group1 343  605  535  47 0.879487179
## 472  0.1164324507 0.883567549 zero Group1 343  604  536  47 0.879487179
## 569  0.1159006879 0.884099312 zero Group1 343  603  537  47 0.879487179
## 658  0.1156914085 0.884308591 zero Group1 343  602  538  47 0.879487179
## 343  0.1147420555 0.885257944 zero Group1 343  601  539  47 0.879487179
## 706  0.1140561104 0.885943890 zero Group1 343  600  540  47 0.879487179
## 1259 0.1140554920 0.885944508 zero Group1 343  599  541  47 0.879487179
## 1108 0.1135511175 0.886448883 zero Group1 343  598  542  47 0.879487179
## 914  0.1127971411 0.887202859 zero Group1 343  597  543  47 0.879487179
## 36   0.1125887781 0.887411222  one Group1 344  597  543  46 0.882051282
## 1340 0.1124559343 0.887544066 zero Group1 344  596  544  46 0.882051282
## 426  0.1124302000 0.887569800 zero Group1 344  595  545  46 0.882051282
## 501  0.1121468320 0.887853168 zero Group1 344  594  546  46 0.882051282
## 1430 0.1117546111 0.888245389 zero Group1 344  593  547  46 0.882051282
## 155  0.1112475693 0.888752431 zero Group1 344  592  548  46 0.882051282
## 264  0.1111849323 0.888815068 zero Group1 344  591  549  46 0.882051282
## 441  0.1102249250 0.889775075 zero Group1 344  590  550  46 0.882051282
## 565  0.1100734174 0.889926583 zero Group1 344  589  551  46 0.882051282
## 209  0.1097215712 0.890278429  one Group1 345  589  551  45 0.884615385
## 623  0.1096125245 0.890387475 zero Group1 345  588  552  45 0.884615385
## 687  0.1093332320 0.890666768 zero Group1 345  587  553  45 0.884615385
## 255  0.1088454947 0.891154505 zero Group1 345  586  554  45 0.884615385
## 1293 0.1088384837 0.891161516 zero Group1 345  585  555  45 0.884615385
## 925  0.1084517315 0.891548268 zero Group1 345  584  556  45 0.884615385
## 980  0.1082121208 0.891787879 zero Group1 345  583  557  45 0.884615385
## 1477 0.1074802354 0.892519765 zero Group1 345  582  558  45 0.884615385
## 188  0.1073391661 0.892660834  one Group1 346  582  558  44 0.887179487
## 481  0.1068998501 0.893100150  one Group1 347  582  558  43 0.889743590
## 158  0.1066262871 0.893373713 zero Group1 347  581  559  43 0.889743590
## 469  0.1061477065 0.893852293 zero Group1 347  580  560  43 0.889743590
## 1495 0.1061021984 0.893897802 zero Group1 347  579  561  43 0.889743590
## 1135 0.1060537621 0.893946238 zero Group1 347  578  562  43 0.889743590
## 12   0.1057434455 0.894256555  one Group1 348  578  562  42 0.892307692
## 806  0.1056849509 0.894315049 zero Group1 348  577  563  42 0.892307692
## 535  0.1052905768 0.894709423 zero Group1 348  576  564  42 0.892307692
## 130  0.1049932167 0.895006783  one Group1 349  576  564  41 0.894871795
## 1309 0.1049469188 0.895053081 zero Group1 349  575  565  41 0.894871795
## 261  0.1042028442 0.895797156  one Group1 350  575  565  40 0.897435897
## 381  0.1040353552 0.895964645 zero Group1 350  574  566  40 0.897435897
## 446  0.1029943079 0.897005692 zero Group1 350  573  567  40 0.897435897
## 1393 0.1028515324 0.897148468 zero Group1 350  572  568  40 0.897435897
## 448  0.1026564538 0.897343546 zero Group1 350  571  569  40 0.897435897
## 513  0.1025059819 0.897494018  one Group1 351  571  569  39 0.900000000
## 1023 0.1022656560 0.897734344 zero Group1 351  570  570  39 0.900000000
## 1000 0.1016197428 0.898380257  one Group1 352  570  570  38 0.902564103
## 417  0.1014293805 0.898570620 zero Group1 352  569  571  38 0.902564103
## 367  0.1006328836 0.899367116 zero Group1 352  568  572  38 0.902564103
## 460  0.1004125848 0.899587415 zero Group1 352  567  573  38 0.902564103
## 1166 0.1000287682 0.899971232 zero Group1 352  566  574  38 0.902564103
## 64   0.0996104404 0.900389560 zero Group1 352  565  575  38 0.902564103
## 948  0.0989931673 0.901006833 zero Group1 352  564  576  38 0.902564103
## 631  0.0984507203 0.901549280 zero Group1 352  563  577  38 0.902564103
## 103  0.0981341302 0.901865870 zero Group1 352  562  578  38 0.902564103
## 611  0.0980624706 0.901937529 zero Group1 352  561  579  38 0.902564103
## 1518 0.0975515172 0.902448483 zero Group1 352  560  580  38 0.902564103
## 1376 0.0971411392 0.902858861  one Group1 353  560  580  37 0.905128205
## 936  0.0967695415 0.903230458 zero Group1 353  559  581  37 0.905128205
## 1441 0.0964300185 0.903569981 zero Group1 353  558  582  37 0.905128205
## 739  0.0959439352 0.904056065 zero Group1 353  557  583  37 0.905128205
## 1516 0.0954552069 0.904544793 zero Group1 353  556  584  37 0.905128205
## 1392 0.0944061950 0.905593805 zero Group1 353  555  585  37 0.905128205
## 1363 0.0943675786 0.905632421 zero Group1 353  554  586  37 0.905128205
## 1267 0.0940593332 0.905940667 zero Group1 353  553  587  37 0.905128205
## 1086 0.0935412198 0.906458780  one Group1 354  553  587  36 0.907692308
## 379  0.0932365656 0.906763434 zero Group1 354  552  588  36 0.907692308
## 889  0.0923549011 0.907645099  one Group1 355  552  588  35 0.910256410
## 28   0.0916721299 0.908327870 zero Group1 355  551  589  35 0.910256410
## 1188 0.0915758610 0.908424139 zero Group1 355  550  590  35 0.910256410
## 372  0.0909615159 0.909038484 zero Group1 355  549  591  35 0.910256410
## 206  0.0906549245 0.909345075 zero Group1 355  548  592  35 0.910256410
## 260  0.0900257826 0.909974217 zero Group1 355  547  593  35 0.910256410
## 668  0.0896992236 0.910300776 zero Group1 355  546  594  35 0.910256410
## 1028 0.0896199271 0.910380073 zero Group1 355  545  595  35 0.910256410
## 620  0.0890188143 0.910981186 zero Group1 355  544  596  35 0.910256410
## 1491 0.0889267474 0.911073253 zero Group1 355  543  597  35 0.910256410
## 341  0.0883641466 0.911635853 zero Group1 355  542  598  35 0.910256410
## 253  0.0878456756 0.912154324 zero Group1 355  541  599  35 0.910256410
## 615  0.0877682194 0.912231781 zero Group1 355  540  600  35 0.910256410
## 1002 0.0877181441 0.912281856  one Group1 356  540  600  34 0.912820513
## 287  0.0872834697 0.912716530 zero Group1 356  539  601  34 0.912820513
## 641  0.0871791691 0.912820831  one Group1 357  539  601  33 0.915384615
## 563  0.0866391212 0.913360879 zero Group1 357  538  602  33 0.915384615
## 783  0.0863750950 0.913624905 zero Group1 357  537  603  33 0.915384615
## 1134 0.0863337815 0.913666219  one Group1 358  537  603  32 0.917948718
## 489  0.0860894248 0.913910575 zero Group1 358  536  604  32 0.917948718
## 1    0.0860109702 0.913989030 zero Group1 358  535  605  32 0.917948718
## 1377 0.0851382390 0.914861761 zero Group1 358  534  606  32 0.917948718
## 1255 0.0850949436 0.914905056  one Group1 359  534  606  31 0.920512821
## 431  0.0845986009 0.915401399 zero Group1 359  533  607  31 0.920512821
## 194  0.0845947787 0.915405221 zero Group1 359  532  608  31 0.920512821
## 1158 0.0845648348 0.915435165 zero Group1 359  531  609  31 0.920512821
## 86   0.0845096111 0.915490389 zero Group1 359  530  610  31 0.920512821
## 370  0.0844817758 0.915518224 zero Group1 359  529  611  31 0.920512821
## 375  0.0836778283 0.916322172 zero Group1 359  528  612  31 0.920512821
## 177  0.0835523084 0.916447692 zero Group1 359  527  613  31 0.920512821
## 1406 0.0833865404 0.916613460 zero Group1 359  526  614  31 0.920512821
## 498  0.0833706558 0.916629344 zero Group1 359  525  615  31 0.920512821
## 1435 0.0832175687 0.916782431 zero Group1 359  524  616  31 0.920512821
## 70   0.0831335858 0.916866414 zero Group1 359  523  617  31 0.920512821
## 67   0.0831313431 0.916868657 zero Group1 359  522  618  31 0.920512821
## 928  0.0828943551 0.917105645 zero Group1 359  521  619  31 0.920512821
## 269  0.0827690512 0.917230949 zero Group1 359  520  620  31 0.920512821
## 315  0.0825691894 0.917430811 zero Group1 359  519  621  31 0.920512821
## 984  0.0825104490 0.917489551 zero Group1 359  518  622  31 0.920512821
## 198  0.0818479508 0.918152049  one Group1 360  518  622  30 0.923076923
## 1281 0.0805552751 0.919444725 zero Group1 360  517  623  30 0.923076923
## 568  0.0804826841 0.919517316 zero Group1 360  516  624  30 0.923076923
## 236  0.0796218961 0.920378104 zero Group1 360  515  625  30 0.923076923
## 829  0.0794791803 0.920520820 zero Group1 360  514  626  30 0.923076923
## 387  0.0790052041 0.920994796 zero Group1 360  513  627  30 0.923076923
## 56   0.0786575526 0.921342447 zero Group1 360  512  628  30 0.923076923
## 965  0.0786294788 0.921370521  one Group1 361  512  628  29 0.925641026
## 1027 0.0786289796 0.921371020 zero Group1 361  511  629  29 0.925641026
## 1493 0.0783253983 0.921674602 zero Group1 361  510  630  29 0.925641026
## 1319 0.0781897902 0.921810210 zero Group1 361  509  631  29 0.925641026
## 1185 0.0781307146 0.921869285 zero Group1 361  508  632  29 0.925641026
## 818  0.0776380002 0.922362000 zero Group1 361  507  633  29 0.925641026
## 1051 0.0756564066 0.924343593 zero Group1 361  506  634  29 0.925641026
## 537  0.0755608901 0.924439110 zero Group1 361  505  635  29 0.925641026
## 1213 0.0752203390 0.924779661  one Group1 362  505  635  28 0.928205128
## 1283 0.0751955956 0.924804404  one Group1 363  505  635  27 0.930769231
## 820  0.0750573575 0.924942642 zero Group1 363  504  636  27 0.930769231
## 1238 0.0749308467 0.925069153 zero Group1 363  503  637  27 0.930769231
## 1419 0.0741370544 0.925862946 zero Group1 363  502  638  27 0.930769231
## 1017 0.0740940347 0.925905965 zero Group1 363  501  639  27 0.930769231
## 356  0.0734387487 0.926561251 zero Group1 363  500  640  27 0.930769231
## 567  0.0733263195 0.926673681 zero Group1 363  499  641  27 0.930769231
## 1308 0.0727619752 0.927238025 zero Group1 363  498  642  27 0.930769231
## 149  0.0723221079 0.927677892 zero Group1 363  497  643  27 0.930769231
## 755  0.0722816810 0.927718319 zero Group1 363  496  644  27 0.930769231
## 629  0.0720101222 0.927989878 zero Group1 363  495  645  27 0.930769231
## 1514 0.0719570443 0.928042956 zero Group1 363  494  646  27 0.930769231
## 214  0.0711028576 0.928897142 zero Group1 363  493  647  27 0.930769231
## 1313 0.0710670128 0.928932987 zero Group1 363  492  648  27 0.930769231
## 1301 0.0704044104 0.929595590 zero Group1 363  491  649  27 0.930769231
## 1302 0.0701192841 0.929880716 zero Group1 363  490  650  27 0.930769231
## 932  0.0699708983 0.930029102 zero Group1 363  489  651  27 0.930769231
## 212  0.0699167550 0.930083245 zero Group1 363  488  652  27 0.930769231
## 1052 0.0698978975 0.930102102 zero Group1 363  487  653  27 0.930769231
## 263  0.0695626214 0.930437379 zero Group1 363  486  654  27 0.930769231
## 71   0.0689193085 0.931080692 zero Group1 363  485  655  27 0.930769231
## 363  0.0687509254 0.931249075 zero Group1 363  484  656  27 0.930769231
## 294  0.0684843883 0.931515612 zero Group1 363  483  657  27 0.930769231
## 906  0.0684268028 0.931573197 zero Group1 363  482  658  27 0.930769231
## 1355 0.0681963339 0.931803666 zero Group1 363  481  659  27 0.930769231
## 937  0.0680495277 0.931950472 zero Group1 363  480  660  27 0.930769231
## 785  0.0680373535 0.931962647 zero Group1 363  479  661  27 0.930769231
## 1227 0.0680353865 0.931964613 zero Group1 363  478  662  27 0.930769231
## 684  0.0680319071 0.931968093 zero Group1 363  477  663  27 0.930769231
## 65   0.0678462833 0.932153717 zero Group1 363  476  664  27 0.930769231
## 740  0.0671966150 0.932803385 zero Group1 363  475  665  27 0.930769231
## 45   0.0671357885 0.932864211 zero Group1 363  474  666  27 0.930769231
## 656  0.0669712722 0.933028728 zero Group1 363  473  667  27 0.930769231
## 599  0.0669483617 0.933051638  one Group1 364  473  667  26 0.933333333
## 1239 0.0662509650 0.933749035 zero Group1 364  472  668  26 0.933333333
## 864  0.0660933703 0.933906630 zero Group1 364  471  669  26 0.933333333
## 823  0.0653285384 0.934671462 zero Group1 364  470  670  26 0.933333333
## 1500 0.0649967641 0.935003236 zero Group1 364  469  671  26 0.933333333
## 1473 0.0645567253 0.935443275 zero Group1 364  468  672  26 0.933333333
## 33   0.0644508898 0.935549110 zero Group1 364  467  673  26 0.933333333
## 1372 0.0643768981 0.935623102  one Group1 365  467  673  25 0.935897436
## 1461 0.0640905574 0.935909443 zero Group1 365  466  674  25 0.935897436
## 400  0.0640359446 0.935964055  one Group1 366  466  674  24 0.938461538
## 1373 0.0639779121 0.936022088  one Group1 367  466  674  23 0.941025641
## 562  0.0638827756 0.936117224 zero Group1 367  465  675  23 0.941025641
## 242  0.0636055171 0.936394483 zero Group1 367  464  676  23 0.941025641
## 1096 0.0635695234 0.936430477 zero Group1 367  463  677  23 0.941025641
## 898  0.0633240491 0.936675951 zero Group1 367  462  678  23 0.941025641
## 115  0.0632579401 0.936742060 zero Group1 367  461  679  23 0.941025641
## 1055 0.0632304922 0.936769508 zero Group1 367  460  680  23 0.941025641
## 442  0.0631869808 0.936813019 zero Group1 367  459  681  23 0.941025641
## 374  0.0629336387 0.937066361 zero Group1 367  458  682  23 0.941025641
## 1062 0.0624770448 0.937522955 zero Group1 367  457  683  23 0.941025641
## 1176 0.0622658804 0.937734120 zero Group1 367  456  684  23 0.941025641
## 1443 0.0614043325 0.938595667 zero Group1 367  455  685  23 0.941025641
## 1433 0.0606822334 0.939317767 zero Group1 367  454  686  23 0.941025641
## 795  0.0604788214 0.939521179 zero Group1 367  453  687  23 0.941025641
## 870  0.0603122786 0.939687721 zero Group1 367  452  688  23 0.941025641
## 1505 0.0601755120 0.939824488 zero Group1 367  451  689  23 0.941025641
## 857  0.0600844547 0.939915545 zero Group1 367  450  690  23 0.941025641
## 912  0.0589821003 0.941017900 zero Group1 367  449  691  23 0.941025641
## 90   0.0586281084 0.941371892 zero Group1 367  448  692  23 0.941025641
## 1324 0.0586273074 0.941372693 zero Group1 367  447  693  23 0.941025641
## 981  0.0585511290 0.941448871 zero Group1 367  446  694  23 0.941025641
## 1026 0.0583617575 0.941638242 zero Group1 367  445  695  23 0.941025641
## 772  0.0579240471 0.942075953 zero Group1 367  444  696  23 0.941025641
## 1466 0.0574213453 0.942578655 zero Group1 367  443  697  23 0.941025641
## 1487 0.0569698922 0.943030108 zero Group1 367  442  698  23 0.941025641
## 1382 0.0568435490 0.943156451 zero Group1 367  441  699  23 0.941025641
## 1503 0.0567360409 0.943263959 zero Group1 367  440  700  23 0.941025641
## 138  0.0564643033 0.943535697 zero Group1 367  439  701  23 0.941025641
## 410  0.0561355054 0.943864495 zero Group1 367  438  702  23 0.941025641
## 808  0.0559048504 0.944095150 zero Group1 367  437  703  23 0.941025641
## 1307 0.0556080826 0.944391917 zero Group1 367  436  704  23 0.941025641
## 1507 0.0554554425 0.944544557 zero Group1 367  435  705  23 0.941025641
## 879  0.0553058311 0.944694169  one Group1 368  435  705  22 0.943589744
## 1470 0.0552601591 0.944739841 zero Group1 368  434  706  22 0.943589744
## 540  0.0547607094 0.945239291 zero Group1 368  433  707  22 0.943589744
## 1138 0.0536860153 0.946313985 zero Group1 368  432  708  22 0.943589744
## 1385 0.0534897521 0.946510248 zero Group1 368  431  709  22 0.943589744
## 1460 0.0534665436 0.946533456 zero Group1 368  430  710  22 0.943589744
## 1244 0.0533375293 0.946662471  one Group1 369  430  710  21 0.946153846
## 164  0.0533272587 0.946672741  one Group1 370  430  710  20 0.948717949
## 1299 0.0533212051 0.946678795 zero Group1 370  429  711  20 0.948717949
## 1142 0.0530958809 0.946904119 zero Group1 370  428  712  20 0.948717949
## 1168 0.0528868698 0.947113130 zero Group1 370  427  713  20 0.948717949
## 826  0.0528506972 0.947149303 zero Group1 370  426  714  20 0.948717949
## 697  0.0528319590 0.947168041 zero Group1 370  425  715  20 0.948717949
## 612  0.0526375249 0.947362475 zero Group1 370  424  716  20 0.948717949
## 1224 0.0525531359 0.947446864 zero Group1 370  423  717  20 0.948717949
## 1471 0.0525345728 0.947465427 zero Group1 370  422  718  20 0.948717949
## 955  0.0524110794 0.947588921 zero Group1 370  421  719  20 0.948717949
## 716  0.0520998761 0.947900124  one Group1 371  421  719  19 0.951282051
## 536  0.0517206602 0.948279340 zero Group1 371  420  720  19 0.951282051
## 447  0.0514177084 0.948582292 zero Group1 371  419  721  19 0.951282051
## 1145 0.0512878001 0.948712200 zero Group1 371  418  722  19 0.951282051
## 1187 0.0510424525 0.948957548 zero Group1 371  417  723  19 0.951282051
## 383  0.0508745722 0.949125428 zero Group1 371  416  724  19 0.951282051
## 844  0.0500345416 0.949965458  one Group1 372  416  724  18 0.953846154
## 1344 0.0496419519 0.950358048 zero Group1 372  415  725  18 0.953846154
## 1305 0.0493653305 0.950634670 zero Group1 372  414  726  18 0.953846154
## 1326 0.0492912903 0.950708710  one Group1 373  414  726  17 0.956410256
## 581  0.0492906235 0.950709376 zero Group1 373  413  727  17 0.956410256
## 1257 0.0478512086 0.952148791 zero Group1 373  412  728  17 0.956410256
## 105  0.0477153175 0.952284683 zero Group1 373  411  729  17 0.956410256
## 416  0.0475229062 0.952477094 zero Group1 373  410  730  17 0.956410256
## 551  0.0473979302 0.952602070 zero Group1 373  409  731  17 0.956410256
## 286  0.0472266451 0.952773355 zero Group1 373  408  732  17 0.956410256
## 1209 0.0469697192 0.953030281  one Group1 374  408  732  16 0.958974359
## 213  0.0463262275 0.953673773 zero Group1 374  407  733  16 0.958974359
## 875  0.0462924279 0.953707572 zero Group1 374  406  734  16 0.958974359
## 466  0.0462225191 0.953777481 zero Group1 374  405  735  16 0.958974359
## 1386 0.0461804122 0.953819588 zero Group1 374  404  736  16 0.958974359
## 461  0.0461439714 0.953856029 zero Group1 374  403  737  16 0.958974359
## 337  0.0460764393 0.953923561 zero Group1 374  402  738  16 0.958974359
## 1341 0.0458469428 0.954153057 zero Group1 374  401  739  16 0.958974359
## 1497 0.0457438119 0.954256188 zero Group1 374  400  740  16 0.958974359
## 619  0.0456820875 0.954317912 zero Group1 374  399  741  16 0.958974359
## 919  0.0454960540 0.954503946  one Group1 375  399  741  15 0.961538462
## 285  0.0453275666 0.954672433 zero Group1 375  398  742  15 0.961538462
## 1279 0.0448488332 0.955151167 zero Group1 375  397  743  15 0.961538462
## 281  0.0447509401 0.955249060  one Group1 376  397  743  14 0.964102564
## 1223 0.0446517542 0.955348246 zero Group1 376  396  744  14 0.964102564
## 1275 0.0443651564 0.955634844 zero Group1 376  395  745  14 0.964102564
## 861  0.0442705676 0.955729432 zero Group1 376  394  746  14 0.964102564
## 434  0.0441527143 0.955847286  one Group1 377  394  746  13 0.966666667
## 61   0.0441260375 0.955873962 zero Group1 377  393  747  13 0.966666667
## 425  0.0437168963 0.956283104 zero Group1 377  392  748  13 0.966666667
## 1233 0.0436899550 0.956310045 zero Group1 377  391  749  13 0.966666667
## 295  0.0436875634 0.956312437 zero Group1 377  390  750  13 0.966666667
## 1488 0.0433971435 0.956602857 zero Group1 377  389  751  13 0.966666667
## 1436 0.0433519818 0.956648018 zero Group1 377  388  752  13 0.966666667
## 582  0.0429783948 0.957021605 zero Group1 377  387  753  13 0.966666667
## 547  0.0428539142 0.957146086 zero Group1 377  386  754  13 0.966666667
## 246  0.0428133495 0.957186650 zero Group1 377  385  755  13 0.966666667
## 420  0.0426903330 0.957309667 zero Group1 377  384  756  13 0.966666667
## 366  0.0426078737 0.957392126 zero Group1 377  383  757  13 0.966666667
## 494  0.0418790467 0.958120953 zero Group1 377  382  758  13 0.966666667
## 1425 0.0417695865 0.958230413 zero Group1 377  381  759  13 0.966666667
## 368  0.0416791104 0.958320890 zero Group1 377  380  760  13 0.966666667
## 1360 0.0416609906 0.958339009 zero Group1 377  379  761  13 0.966666667
## 1512 0.0413826108 0.958617389 zero Group1 377  378  762  13 0.966666667
## 814  0.0412939079 0.958706092 zero Group1 377  377  763  13 0.966666667
## 789  0.0412031561 0.958796844 zero Group1 377  376  764  13 0.966666667
## 1222 0.0406795330 0.959320467 zero Group1 377  375  765  13 0.966666667
## 313  0.0405406840 0.959459316  one Group1 378  375  765  12 0.969230769
## 1178 0.0403710231 0.959628977 zero Group1 378  374  766  12 0.969230769
## 1368 0.0403397977 0.959660202  one Group1 379  374  766  11 0.971794872
## 443  0.0401989855 0.959801015 zero Group1 379  373  767  11 0.971794872
## 207  0.0398984998 0.960101500 zero Group1 379  372  768  11 0.971794872
## 1021 0.0398976877 0.960102312 zero Group1 379  371  769  11 0.971794872
## 1077 0.0398827940 0.960117206 zero Group1 379  370  770  11 0.971794872
## 1107 0.0397532098 0.960246790 zero Group1 379  369  771  11 0.971794872
## 1141 0.0390502401 0.960949760 zero Group1 379  368  772  11 0.971794872
## 610  0.0390258618 0.960974138 zero Group1 379  367  773  11 0.971794872
## 1416 0.0390238576 0.960976142 zero Group1 379  366  774  11 0.971794872
## 380  0.0387528352 0.961247165 zero Group1 379  365  775  11 0.971794872
## 199  0.0387055688 0.961294431  one Group1 380  365  775  10 0.974358974
## 319  0.0386306718 0.961369328 zero Group1 380  364  776  10 0.974358974
## 1079 0.0384606197 0.961539380 zero Group1 380  363  777  10 0.974358974
## 856  0.0380925350 0.961907465 zero Group1 380  362  778  10 0.974358974
## 414  0.0380457714 0.961954229 zero Group1 380  361  779  10 0.974358974
## 62   0.0379075892 0.962092411 zero Group1 380  360  780  10 0.974358974
## 1094 0.0376943052 0.962305695 zero Group1 380  359  781  10 0.974358974
## 531  0.0375162214 0.962483779 zero Group1 380  358  782  10 0.974358974
## 1511 0.0371530540 0.962846946 zero Group1 380  357  783  10 0.974358974
## 60   0.0370948464 0.962905154 zero Group1 380  356  784  10 0.974358974
## 1357 0.0369931981 0.963006802 zero Group1 380  355  785  10 0.974358974
## 192  0.0366479978 0.963352002 zero Group1 380  354  786  10 0.974358974
## 211  0.0366020314 0.963397969 zero Group1 380  353  787  10 0.974358974
## 774  0.0363476686 0.963652331 zero Group1 380  352  788  10 0.974358974
## 1056 0.0362867713 0.963713229 zero Group1 380  351  789  10 0.974358974
## 810  0.0362312160 0.963768784 zero Group1 380  350  790  10 0.974358974
## 947  0.0362301357 0.963769864 zero Group1 380  349  791  10 0.974358974
## 40   0.0362192392 0.963780761 zero Group1 380  348  792  10 0.974358974
## 1346 0.0360136554 0.963986345 zero Group1 380  347  793  10 0.974358974
## 566  0.0353646316 0.964635368 zero Group1 380  346  794  10 0.974358974
## 119  0.0353410952 0.964658905 zero Group1 380  345  795  10 0.974358974
## 508  0.0349367522 0.965063248 zero Group1 380  344  796  10 0.974358974
## 352  0.0349113904 0.965088610  one Group1 381  344  796   9 0.976923077
## 69   0.0348870121 0.965112988 zero Group1 381  343  797   9 0.976923077
## 1016 0.0346058942 0.965394106 zero Group1 381  342  798   9 0.976923077
## 507  0.0345499516 0.965450048 zero Group1 381  341  799   9 0.976923077
## 1358 0.0345484130 0.965451587 zero Group1 381  340  800   9 0.976923077
## 413  0.0344995484 0.965500452 zero Group1 381  339  801   9 0.976923077
## 714  0.0343068615 0.965693139 zero Group1 381  338  802   9 0.976923077
## 552  0.0339376740 0.966062326  one Group1 382  338  802   8 0.979487179
## 667  0.0338573828 0.966142617 zero Group1 382  337  803   8 0.979487179
## 705  0.0335170031 0.966482997 zero Group1 382  336  804   8 0.979487179
## 1140 0.0334439613 0.966556039 zero Group1 382  335  805   8 0.979487179
## 607  0.0333636254 0.966636375 zero Group1 382  334  806   8 0.979487179
## 690  0.0331768505 0.966823149 zero Group1 382  333  807   8 0.979487179
## 741  0.0331265107 0.966873489 zero Group1 382  332  808   8 0.979487179
## 1242 0.0330802426 0.966919757 zero Group1 382  331  809   8 0.979487179
## 816  0.0330048352 0.966995165 zero Group1 382  330  810   8 0.979487179
## 1472 0.0324754305 0.967524569 zero Group1 382  329  811   8 0.979487179
## 1321 0.0323348120 0.967665188 zero Group1 382  328  812   8 0.979487179
## 1481 0.0322635919 0.967736408 zero Group1 382  327  813   8 0.979487179
## 746  0.0320718288 0.967928171 zero Group1 382  326  814   8 0.979487179
## 913  0.0318874978 0.968112502 zero Group1 382  325  815   8 0.979487179
## 541  0.0318100937 0.968189906 zero Group1 382  324  816   8 0.979487179
## 989  0.0317702144 0.968229786 zero Group1 382  323  817   8 0.979487179
## 222  0.0310574826 0.968942517 zero Group1 382  322  818   8 0.979487179
## 813  0.0302882027 0.969711797 zero Group1 382  321  819   8 0.979487179
## 1036 0.0302324779 0.969767522 zero Group1 382  320  820   8 0.979487179
## 985  0.0298922285 0.970107771 zero Group1 382  319  821   8 0.979487179
## 973  0.0296362918 0.970363708 zero Group1 382  318  822   8 0.979487179
## 328  0.0296265818 0.970373418 zero Group1 382  317  823   8 0.979487179
## 976  0.0291969236 0.970803076 zero Group1 382  316  824   8 0.979487179
## 1181 0.0291596502 0.970840350 zero Group1 382  315  825   8 0.979487179
## 1291 0.0289632119 0.971036788 zero Group1 382  314  826   8 0.979487179
## 951  0.0288798064 0.971120194 zero Group1 382  313  827   8 0.979487179
## 487  0.0288014095 0.971198590 zero Group1 382  312  828   8 0.979487179
## 918  0.0287203453 0.971279655  one Group1 383  312  828   7 0.982051282
## 1231 0.0286133997 0.971386600 zero Group1 383  311  829   7 0.982051282
## 583  0.0285289884 0.971471012 zero Group1 383  310  830   7 0.982051282
## 191  0.0278856270 0.972114373 zero Group1 383  309  831   7 0.982051282
## 449  0.0278786235 0.972121377 zero Group1 383  308  832   7 0.982051282
## 54   0.0278506000 0.972149400 zero Group1 383  307  833   7 0.982051282
## 1043 0.0276704114 0.972329589 zero Group1 383  306  834   7 0.982051282
## 497  0.0272362549 0.972763745 zero Group1 383  305  835   7 0.982051282
## 1072 0.0271301512 0.972869849 zero Group1 383  304  836   7 0.982051282
## 780  0.0270016082 0.972998392 zero Group1 383  303  837   7 0.982051282
## 462  0.0265835170 0.973416483 zero Group1 383  302  838   7 0.982051282
## 1183 0.0264174119 0.973582588 zero Group1 383  301  839   7 0.982051282
## 1347 0.0262083597 0.973791640 zero Group1 383  300  840   7 0.982051282
## 931  0.0261645354 0.973835465 zero Group1 383  299  841   7 0.982051282
## 530  0.0261621177 0.973837882 zero Group1 383  298  842   7 0.982051282
## 648  0.0261575803 0.973842420 zero Group1 383  297  843   7 0.982051282
## 744  0.0261453819 0.973854618 zero Group1 383  296  844   7 0.982051282
## 832  0.0260935538 0.973906446 zero Group1 383  295  845   7 0.982051282
## 924  0.0260263458 0.973973654 zero Group1 383  294  846   7 0.982051282
## 1402 0.0259552710 0.974044729 zero Group1 383  293  847   7 0.982051282
## 1265 0.0257747099 0.974225290 zero Group1 383  292  848   7 0.982051282
## 661  0.0256739035 0.974326096 zero Group1 383  291  849   7 0.982051282
## 1076 0.0256569535 0.974343047 zero Group1 383  290  850   7 0.982051282
## 1339 0.0254232381 0.974576762 zero Group1 383  289  851   7 0.982051282
## 1276 0.0253679510 0.974632049 zero Group1 383  288  852   7 0.982051282
## 491  0.0250665713 0.974933429 zero Group1 383  287  853   7 0.982051282
## 915  0.0248431433 0.975156857 zero Group1 383  286  854   7 0.982051282
## 587  0.0243518203 0.975648180 zero Group1 383  285  855   7 0.982051282
## 1204 0.0242713094 0.975728691  one Group1 384  285  855   6 0.984615385
## 676  0.0240936521 0.975906348  one Group1 385  285  855   5 0.987179487
## 703  0.0240129810 0.975987019 zero Group1 385  284  856   5 0.987179487
## 1520 0.0239310246 0.976068975 zero Group1 385  283  857   5 0.987179487
## 1420 0.0235187914 0.976481209 zero Group1 385  282  858   5 0.987179487
## 1383 0.0234879069 0.976512093 zero Group1 385  281  859   5 0.987179487
## 110  0.0233913492 0.976608651 zero Group1 385  280  860   5 0.987179487
## 1352 0.0232567489 0.976743251 zero Group1 385  279  861   5 0.987179487
## 48   0.0231457278 0.976854272 zero Group1 385  278  862   5 0.987179487
## 927  0.0229674857 0.977032514 zero Group1 385  277  863   5 0.987179487
## 1272 0.0227827262 0.977217274 zero Group1 385  276  864   5 0.987179487
## 853  0.0227346011 0.977265399 zero Group1 385  275  865   5 0.987179487
## 769  0.0225392729 0.977460727 zero Group1 385  274  866   5 0.987179487
## 553  0.0224928539 0.977507146  one Group1 386  274  866   4 0.989743590
## 704  0.0223770086 0.977622991 zero Group1 386  273  867   4 0.989743590
## 876  0.0221657045 0.977834295 zero Group1 386  272  868   4 0.989743590
## 1236 0.0221603252 0.977839675 zero Group1 386  271  869   4 0.989743590
## 978  0.0220714994 0.977928501 zero Group1 386  270  870   4 0.989743590
## 231  0.0218370445 0.978162955 zero Group1 386  269  871   4 0.989743590
## 39   0.0216978248 0.978302175 zero Group1 386  268  872   4 0.989743590
## 1113 0.0216355845 0.978364415 zero Group1 386  267  873   4 0.989743590
## 575  0.0213168226 0.978683177 zero Group1 386  266  874   4 0.989743590
## 1018 0.0211723670 0.978827633 zero Group1 386  265  875   4 0.989743590
## 1415 0.0209508017 0.979049198 zero Group1 386  264  876   4 0.989743590
## 112  0.0208942667 0.979105733 zero Group1 386  263  877   4 0.989743590
## 1485 0.0207575839 0.979242416 zero Group1 386  262  878   4 0.989743590
## 685  0.0207129009 0.979287099 zero Group1 386  261  879   4 0.989743590
## 131  0.0206928886 0.979307111 zero Group1 386  260  880   4 0.989743590
## 25   0.0205841698 0.979415830 zero Group1 386  259  881   4 0.989743590
## 956  0.0205728058 0.979427194 zero Group1 386  258  882   4 0.989743590
## 1172 0.0202629920 0.979737008 zero Group1 386  257  883   4 0.989743590
## 32   0.0202099569 0.979790043 zero Group1 386  256  884   4 0.989743590
## 550  0.0197722334 0.980227767 zero Group1 386  255  885   4 0.989743590
## 4    0.0197585672 0.980241433 zero Group1 386  254  886   4 0.989743590
## 504  0.0196275190 0.980372481 zero Group1 386  253  887   4 0.989743590
## 1024 0.0196142271 0.980385773 zero Group1 386  252  888   4 0.989743590
## 1103 0.0195447765 0.980455223 zero Group1 386  251  889   4 0.989743590
## 753  0.0195447076 0.980455292 zero Group1 386  250  890   4 0.989743590
## 1463 0.0195265822 0.980473418 zero Group1 386  249  891   4 0.989743590
## 327  0.0192519333 0.980748067 zero Group1 386  248  892   4 0.989743590
## 390  0.0190980434 0.980901957 zero Group1 386  247  893   4 0.989743590
## 773  0.0189273451 0.981072655 zero Group1 386  246  894   4 0.989743590
## 953  0.0187881663 0.981211834 zero Group1 386  245  895   4 0.989743590
## 782  0.0187668093 0.981233191 zero Group1 386  244  896   4 0.989743590
## 1338 0.0187149141 0.981285086 zero Group1 386  243  897   4 0.989743590
## 1217 0.0186667070 0.981333293 zero Group1 386  242  898   4 0.989743590
## 346  0.0186516810 0.981348319 zero Group1 386  241  899   4 0.989743590
## 468  0.0186352786 0.981364721 zero Group1 386  240  900   4 0.989743590
## 1032 0.0185665376 0.981433462 zero Group1 386  239  901   4 0.989743590
## 229  0.0182959475 0.981704053 zero Group1 386  238  902   4 0.989743590
## 934  0.0179482903 0.982051710 zero Group1 386  237  903   4 0.989743590
## 411  0.0179364774 0.982063523 zero Group1 386  236  904   4 0.989743590
## 182  0.0178232770 0.982176723 zero Group1 386  235  905   4 0.989743590
## 997  0.0178184211 0.982181579 zero Group1 386  234  906   4 0.989743590
## 998  0.0177662224 0.982233778 zero Group1 386  233  907   4 0.989743590
## 11   0.0176571887 0.982342811 zero Group1 386  232  908   4 0.989743590
## 288  0.0172857754 0.982714225 zero Group1 386  231  909   4 0.989743590
## 444  0.0171958059 0.982804194 zero Group1 386  230  910   4 0.989743590
## 1445 0.0171135124 0.982886488 zero Group1 386  229  911   4 0.989743590
## 1498 0.0170105509 0.982989449 zero Group1 386  228  912   4 0.989743590
## 709  0.0168583132 0.983141687 zero Group1 386  227  913   4 0.989743590
## 225  0.0168439019 0.983156098 zero Group1 386  226  914   4 0.989743590
## 26   0.0168227851 0.983177215 zero Group1 386  225  915   4 0.989743590
## 455  0.0167652778 0.983234722 zero Group1 386  224  916   4 0.989743590
## 1519 0.0166557115 0.983344289 zero Group1 386  223  917   4 0.989743590
## 715  0.0165438168 0.983456183  one Group1 387  223  917   3 0.992307692
## 1100 0.0164382048 0.983561795 zero Group1 387  222  918   3 0.992307692
## 1422 0.0162358843 0.983764116 zero Group1 387  221  919   3 0.992307692
## 1101 0.0155187631 0.984481237 zero Group1 387  220  920   3 0.992307692
## 1063 0.0153420791 0.984657921 zero Group1 387  219  921   3 0.992307692
## 409  0.0153186703 0.984681330 zero Group1 387  218  922   3 0.992307692
## 1442 0.0153156416 0.984684358 zero Group1 387  217  923   3 0.992307692
## 1025 0.0152840186 0.984715981 zero Group1 387  216  924   3 0.992307692
## 170  0.0152731370 0.984726863 zero Group1 387  215  925   3 0.992307692
## 1322 0.0152289299 0.984771070 zero Group1 387  214  926   3 0.992307692
## 1459 0.0152064981 0.984793502 zero Group1 387  213  927   3 0.992307692
## 972  0.0151476348 0.984852365 zero Group1 387  212  928   3 0.992307692
## 1014 0.0151467873 0.984853213 zero Group1 387  211  929   3 0.992307692
## 340  0.0150921084 0.984907892 zero Group1 387  210  930   3 0.992307692
## 616  0.0150064789 0.984993521 zero Group1 387  209  931   3 0.992307692
## 1031 0.0149060218 0.985093978 zero Group1 387  208  932   3 0.992307692
## 675  0.0147304200 0.985269580  one Group1 388  208  932   2 0.994871795
## 407  0.0146723036 0.985327696 zero Group1 388  207  933   2 0.994871795
## 791  0.0146545293 0.985345471 zero Group1 388  206  934   2 0.994871795
## 1192 0.0146271577 0.985372842 zero Group1 388  205  935   2 0.994871795
## 809  0.0144509012 0.985549099 zero Group1 388  204  936   2 0.994871795
## 1437 0.0144209480 0.985579052 zero Group1 388  203  937   2 0.994871795
## 428  0.0142441234 0.985755877 zero Group1 388  202  938   2 0.994871795
## 153  0.0142297475 0.985770253 zero Group1 388  201  939   2 0.994871795
## 1235 0.0141922673 0.985807733 zero Group1 388  200  940   2 0.994871795
## 625  0.0141534377 0.985846562 zero Group1 388  199  941   2 0.994871795
## 730  0.0140691362 0.985930864 zero Group1 388  198  942   2 0.994871795
## 1260 0.0140282782 0.985971722 zero Group1 388  197  943   2 0.994871795
## 1177 0.0139955766 0.986004423 zero Group1 388  196  944   2 0.994871795
## 293  0.0139622670 0.986037733 zero Group1 388  195  945   2 0.994871795
## 1300 0.0138275139 0.986172486 zero Group1 388  194  946   2 0.994871795
## 777  0.0136675145 0.986332485 zero Group1 388  193  947   2 0.994871795
## 1521 0.0136101739 0.986389826 zero Group1 388  192  948   2 0.994871795
## 1147 0.0135466438 0.986453356 zero Group1 388  191  949   2 0.994871795
## 986  0.0135286609 0.986471339 zero Group1 388  190  950   2 0.994871795
## 1428 0.0133397747 0.986660225 zero Group1 388  189  951   2 0.994871795
## 852  0.0132554518 0.986744548 zero Group1 388  188  952   2 0.994871795
## 1270 0.0131469695 0.986853031 zero Group1 388  187  953   2 0.994871795
## 1035 0.0130901635 0.986909837 zero Group1 388  186  954   2 0.994871795
## 647  0.0127982944 0.987201706 zero Group1 388  185  955   2 0.994871795
## 672  0.0127895987 0.987210401 zero Group1 388  184  956   2 0.994871795
## 1318 0.0127553800 0.987244620 zero Group1 388  183  957   2 0.994871795
## 771  0.0127425240 0.987257476 zero Group1 388  182  958   2 0.994871795
## 1342 0.0127130747 0.987286925 zero Group1 388  181  959   2 0.994871795
## 135  0.0125714280 0.987428572 zero Group1 388  180  960   2 0.994871795
## 1229 0.0124528669 0.987547133 zero Group1 388  179  961   2 0.994871795
## 1289 0.0124076772 0.987592323 zero Group1 388  178  962   2 0.994871795
## 322  0.0124054570 0.987594543 zero Group1 388  177  963   2 0.994871795
## 526  0.0123606948 0.987639305 zero Group1 388  176  964   2 0.994871795
## 923  0.0121592088 0.987840791 zero Group1 388  175  965   2 0.994871795
## 628  0.0121357832 0.987864217 zero Group1 388  174  966   2 0.994871795
## 618  0.0121034700 0.987896530 zero Group1 388  173  967   2 0.994871795
## 614  0.0119664306 0.988033569 zero Group1 388  172  968   2 0.994871795
## 1258 0.0118769482 0.988123052 zero Group1 388  171  969   2 0.994871795
## 1380 0.0115557639 0.988444236 zero Group1 388  170  970   2 0.994871795
## 733  0.0114799114 0.988520089 zero Group1 388  169  971   2 0.994871795
## 1034 0.0113949487 0.988605051 zero Group1 388  168  972   2 0.994871795
## 1444 0.0113925738 0.988607426 zero Group1 388  167  973   2 0.994871795
## 580  0.0113882199 0.988611780 zero Group1 388  166  974   2 0.994871795
## 1119 0.0112803970 0.988719603 zero Group1 388  165  975   2 0.994871795
## 102  0.0111229774 0.988877023 zero Group1 388  164  976   2 0.994871795
## 1501 0.0110860784 0.988913922 zero Group1 388  163  977   2 0.994871795
## 860  0.0106490990 0.989350901 zero Group1 388  162  978   2 0.994871795
## 1356 0.0106390966 0.989360903 zero Group1 388  161  979   2 0.994871795
## 378  0.0105216717 0.989478328 zero Group1 388  160  980   2 0.994871795
## 333  0.0101057198 0.989894280 zero Group1 388  159  981   2 0.994871795
## 866  0.0100912200 0.989908780 zero Group1 388  158  982   2 0.994871795
## 904  0.0100697652 0.989930235 zero Group1 388  157  983   2 0.994871795
## 331  0.0098689459 0.990131054 zero Group1 388  156  984   2 0.994871795
## 670  0.0096906228 0.990309377 zero Group1 388  155  985   2 0.994871795
## 534  0.0096506001 0.990349400 zero Group1 388  154  986   2 0.994871795
## 1075 0.0096378112 0.990362189 zero Group1 388  153  987   2 0.994871795
## 1216 0.0095601212 0.990439879 zero Group1 388  152  988   2 0.994871795
## 1153 0.0094168764 0.990583124 zero Group1 388  151  989   2 0.994871795
## 1152 0.0093285246 0.990671475 zero Group1 388  150  990   2 0.994871795
## 731  0.0092590423 0.990740958 zero Group1 388  149  991   2 0.994871795
## 347  0.0092227720 0.990777228 zero Group1 388  148  992   2 0.994871795
## 1278 0.0091881230 0.990811877 zero Group1 388  147  993   2 0.994871795
## 1106 0.0090802219 0.990919778 zero Group1 388  146  994   2 0.994871795
## 877  0.0088073369 0.991192663 zero Group1 388  145  995   2 0.994871795
## 1225 0.0086443173 0.991355683 zero Group1 388  144  996   2 0.994871795
## 1522 0.0085589290 0.991441071 zero Group1 388  143  997   2 0.994871795
## 1345 0.0085244719 0.991475528 zero Group1 388  142  998   2 0.994871795
## 1221 0.0084165782 0.991583422 zero Group1 388  141  999   2 0.994871795
## 833  0.0083894925 0.991610507 zero Group1 388  140 1000   2 0.994871795
## 335  0.0082636336 0.991736366 zero Group1 388  139 1001   2 0.994871795
## 674  0.0080972873 0.991902713 zero Group1 388  138 1002   2 0.994871795
## 1220 0.0079785045 0.992021495 zero Group1 388  137 1003   2 0.994871795
## 812  0.0078538675 0.992146133 zero Group1 388  136 1004   2 0.994871795
## 546  0.0078155193 0.992184481 zero Group1 388  135 1005   2 0.994871795
## 592  0.0077805803 0.992219420 zero Group1 388  134 1006   2 0.994871795
## 993  0.0077434885 0.992256511 zero Group1 388  133 1007   2 0.994871795
## 1353 0.0077000721 0.992299928 zero Group1 388  132 1008   2 0.994871795
## 909  0.0075247237 0.992475276 zero Group1 388  131 1009   2 0.994871795
## 1037 0.0074650794 0.992534921 zero Group1 388  130 1010   2 0.994871795
## 665  0.0073962477 0.992603752 zero Group1 388  129 1011   2 0.994871795
## 735  0.0072598355 0.992740165 zero Group1 388  128 1012   2 0.994871795
## 929  0.0072474810 0.992752519 zero Group1 388  127 1013   2 0.994871795
## 1136 0.0072055636 0.992794436 zero Group1 388  126 1014   2 0.994871795
## 1120 0.0071668555 0.992833144 zero Group1 388  125 1015   2 0.994871795
## 784  0.0071395640 0.992860436 zero Group1 388  124 1016   2 0.994871795
## 1186 0.0071298019 0.992870198 zero Group1 388  123 1017   2 0.994871795
## 608  0.0070639057 0.992936094 zero Group1 388  122 1018   2 0.994871795
## 1432 0.0070360899 0.992963910 zero Group1 388  121 1019   2 0.994871795
## 743  0.0070170094 0.992982991 zero Group1 388  120 1020   2 0.994871795
## 1361 0.0069076810 0.993092319 zero Group1 388  119 1021   2 0.994871795
## 342  0.0068992432 0.993100757 zero Group1 388  118 1022   2 0.994871795
## 89   0.0068536047 0.993146395 zero Group1 388  117 1023   2 0.994871795
## 754  0.0067131761 0.993286824 zero Group1 388  116 1024   2 0.994871795
## 613  0.0066995271 0.993300473 zero Group1 388  115 1025   2 0.994871795
## 350  0.0066543692 0.993345631  one Group1 389  115 1025   1 0.997435897
## 1199 0.0066391123 0.993360888 zero Group1 389  114 1026   1 0.997435897
## 958  0.0065637329 0.993436267 zero Group1 389  113 1027   1 0.997435897
## 834  0.0064784070 0.993521593 zero Group1 389  112 1028   1 0.997435897
## 1378 0.0064777257 0.993522274 zero Group1 389  111 1029   1 0.997435897
## 865  0.0063863811 0.993613619 zero Group1 389  110 1030   1 0.997435897
## 1350 0.0059429957 0.994057004 zero Group1 389  109 1031   1 0.997435897
## 1475 0.0059075449 0.994092455 zero Group1 389  108 1032   1 0.997435897
## 1013 0.0058536944 0.994146306 zero Group1 389  107 1033   1 0.997435897
## 1020 0.0058487128 0.994151287 zero Group1 389  106 1034   1 0.997435897
## 693  0.0055791130 0.994420887 zero Group1 389  105 1035   1 0.997435897
## 825  0.0054680328 0.994531967 zero Group1 389  104 1036   1 0.997435897
## 770  0.0054557677 0.994544232 zero Group1 389  103 1037   1 0.997435897
## 1097 0.0054418165 0.994558183 zero Group1 389  102 1038   1 0.997435897
## 386  0.0054152352 0.994584765 zero Group1 389  101 1039   1 0.997435897
## 143  0.0053561581 0.994643842 zero Group1 389  100 1040   1 0.997435897
## 163  0.0051636435 0.994836356 zero Group1 389   99 1041   1 0.997435897
## 1143 0.0051531410 0.994846859 zero Group1 389   98 1042   1 0.997435897
## 988  0.0050306497 0.994969350 zero Group1 389   97 1043   1 0.997435897
## 76   0.0049903537 0.995009646 zero Group1 389   96 1044   1 0.997435897
## 332  0.0049805348 0.995019465 zero Group1 389   95 1045   1 0.997435897
## 975  0.0049062530 0.995093747 zero Group1 389   94 1046   1 0.997435897
## 1343 0.0048537194 0.995146281 zero Group1 389   93 1047   1 0.997435897
## 1439 0.0047911908 0.995208809 zero Group1 389   92 1048   1 0.997435897
## 1502 0.0047832876 0.995216712 zero Group1 389   91 1049   1 0.997435897
## 538  0.0047127297 0.995287270 zero Group1 389   90 1050   1 0.997435897
## 456  0.0046328041 0.995367196 zero Group1 389   89 1051   1 0.997435897
## 836  0.0045531648 0.995446835 zero Group1 389   88 1052   1 0.997435897
## 983  0.0044867145 0.995513286 zero Group1 389   87 1053   1 0.997435897
## 1118 0.0044695130 0.995530487 zero Group1 389   86 1054   1 0.997435897
## 1157 0.0043769055 0.995623094 zero Group1 389   85 1055   1 0.997435897
## 412  0.0043405681 0.995659432 zero Group1 389   84 1056   1 0.997435897
## 1400 0.0042699878 0.995730012 zero Group1 389   83 1057   1 0.997435897
## 946  0.0042490149 0.995750985 zero Group1 389   82 1058   1 0.997435897
## 855  0.0042003505 0.995799650 zero Group1 389   81 1059   1 0.997435897
## 1399 0.0041538486 0.995846151 zero Group1 389   80 1060   1 0.997435897
## 423  0.0040691346 0.995930865 zero Group1 389   79 1061   1 0.997435897
## 323  0.0040487810 0.995951219 zero Group1 389   78 1062   1 0.997435897
## 680  0.0040041558 0.995995844 zero Group1 389   77 1063   1 0.997435897
## 858  0.0039228108 0.996077189 zero Group1 389   76 1064   1 0.997435897
## 1112 0.0039182706 0.996081729 zero Group1 389   75 1065   1 0.997435897
## 729  0.0036804737 0.996319526 zero Group1 389   74 1066   1 0.997435897
## 701  0.0036499642 0.996350036 zero Group1 389   73 1067   1 0.997435897
## 1071 0.0036176303 0.996382370 zero Group1 389   72 1068   1 0.997435897
## 678  0.0035964637 0.996403536 zero Group1 389   71 1069   1 0.997435897
## 509  0.0032818941 0.996718106 zero Group1 389   70 1070   1 0.997435897
## 224  0.0032664279 0.996733572 zero Group1 389   69 1071   1 0.997435897
## 653  0.0032113823 0.996788618 zero Group1 389   68 1072   1 0.997435897
## 156  0.0031911465 0.996808853 zero Group1 389   67 1073   1 0.997435897
## 1277 0.0031317053 0.996868295 zero Group1 389   66 1074   1 0.997435897
## 176  0.0030472861 0.996952714 zero Group1 389   65 1075   1 0.997435897
## 1019 0.0030322256 0.996967774 zero Group1 389   64 1076   1 0.997435897
## 933  0.0029744923 0.997025508 zero Group1 389   63 1077   1 0.997435897
## 787  0.0028966900 0.997103310 zero Group1 389   62 1078   1 0.997435897
## 627  0.0028089921 0.997191008 zero Group1 389   61 1079   1 0.997435897
## 348  0.0027705480 0.997229452 zero Group1 389   60 1080   1 0.997435897
## 1398 0.0027448104 0.997255190 zero Group1 389   59 1081   1 0.997435897
## 952  0.0027327077 0.997267292 zero Group1 389   58 1082   1 0.997435897
## 590  0.0027178223 0.997282178 zero Group1 389   57 1083   1 0.997435897
## 1137 0.0027150696 0.997284930 zero Group1 389   56 1084   1 0.997435897
## 737  0.0027064132 0.997293587 zero Group1 389   55 1085   1 0.997435897
## 830  0.0027026255 0.997297375 zero Group1 389   54 1086   1 0.997435897
## 467  0.0026492986 0.997350701 zero Group1 389   53 1087   1 0.997435897
## 593  0.0025554055 0.997444595 zero Group1 389   52 1088   1 0.997435897
## 1033 0.0025366840 0.997463316 zero Group1 389   51 1089   1 0.997435897
## 1073 0.0024949792 0.997505021 zero Group1 389   50 1090   1 0.997435897
## 954  0.0023579698 0.997642030 zero Group1 389   49 1091   1 0.997435897
## 1162 0.0022890444 0.997710956  one Group1 390   49 1091   0 1.000000000
## 794  0.0022433246 0.997756675 zero Group1 390   48 1092   0 1.000000000
## 488  0.0021712636 0.997828736 zero Group1 390   47 1093   0 1.000000000
## 440  0.0021256267 0.997874373 zero Group1 390   46 1094   0 1.000000000
## 874  0.0021000695 0.997899930 zero Group1 390   45 1095   0 1.000000000
## 1202 0.0020866254 0.997913375 zero Group1 390   44 1096   0 1.000000000
## 903  0.0020302951 0.997969705 zero Group1 390   43 1097   0 1.000000000
## 424  0.0020302555 0.997969744 zero Group1 390   42 1098   0 1.000000000
## 506  0.0019228086 0.998077191 zero Group1 390   41 1099   0 1.000000000
## 1478 0.0019176087 0.998082391 zero Group1 390   40 1100   0 1.000000000
## 308  0.0019036279 0.998096372 zero Group1 390   39 1101   0 1.000000000
## 502  0.0018329412 0.998167059 zero Group1 390   37 1103   0 1.000000000
## 1121 0.0018329412 0.998167059 zero Group1 390   37 1103   0 1.000000000
## 655  0.0017769277 0.998223072 zero Group1 390   36 1104   0 1.000000000
## 529  0.0017530366 0.998246963 zero Group1 390   35 1105   0 1.000000000
## 1517 0.0017189786 0.998281021 zero Group1 390   34 1106   0 1.000000000
## 306  0.0016855508 0.998314449 zero Group1 390   33 1107   0 1.000000000
## 1426 0.0015900150 0.998409985 zero Group1 390   32 1108   0 1.000000000
## 433  0.0015729720 0.998427028 zero Group1 390   31 1109   0 1.000000000
## 429  0.0015413939 0.998458606 zero Group1 390   30 1110   0 1.000000000
## 651  0.0015207864 0.998479214 zero Group1 390   29 1111   0 1.000000000
## 1303 0.0014029210 0.998597079 zero Group1 390   28 1112   0 1.000000000
## 1110 0.0012101579 0.998789842 zero Group1 390   27 1113   0 1.000000000
## 793  0.0011576661 0.998842334 zero Group1 390   26 1114   0 1.000000000
## 1391 0.0011150037 0.998884996 zero Group1 390   25 1115   0 1.000000000
## 738  0.0010951739 0.998904826 zero Group1 390   24 1116   0 1.000000000
## 1053 0.0010476660 0.998952334 zero Group1 390   23 1117   0 1.000000000
## 1054 0.0010293890 0.998970611 zero Group1 390   22 1118   0 1.000000000
## 549  0.0009956838 0.999004316 zero Group1 390   21 1119   0 1.000000000
## 385  0.0009219768 0.999078023 zero Group1 390   20 1120   0 1.000000000
## 859  0.0008924455 0.999107554 zero Group1 390   19 1121   0 1.000000000
## 505  0.0007506033 0.999249397 zero Group1 390   18 1122   0 1.000000000
## 544  0.0007091796 0.999290820 zero Group1 390   17 1123   0 1.000000000
## 329  0.0006628888 0.999337111 zero Group1 390   16 1124   0 1.000000000
## 792  0.0006566610 0.999343339 zero Group1 390   15 1125   0 1.000000000
## 831  0.0006476612 0.999352339 zero Group1 390   14 1126   0 1.000000000
## 503  0.0006290229 0.999370977 zero Group1 390   13 1127   0 1.000000000
## 1180 0.0005913876 0.999408612 zero Group1 390   12 1128   0 1.000000000
## 1117 0.0005034999 0.999496500 zero Group1 390   11 1129   0 1.000000000
## 752  0.0004992730 0.999500727 zero Group1 390   10 1130   0 1.000000000
## 591  0.0004930017 0.999506998 zero Group1 390    9 1131   0 1.000000000
## 1200 0.0004078992 0.999592101 zero Group1 390    8 1132   0 1.000000000
## 1462 0.0003988850 0.999601115 zero Group1 390    7 1133   0 1.000000000
## 1397 0.0003777805 0.999622219 zero Group1 390    6 1134   0 1.000000000
## 511  0.0003653785 0.999634621 zero Group1 390    5 1135   0 1.000000000
## 532  0.0003444771 0.999655523 zero Group1 390    4 1136   0 1.000000000
## 1198 0.0003105397 0.999689460 zero Group1 390    3 1137   0 1.000000000
## 304  0.0002679290 0.999732071 zero Group1 390    2 1138   0 1.000000000
## 689  0.0001990705 0.999800929 zero Group1 390    1 1139   0 1.000000000
## 977  0.0001685512 0.999831449 zero Group1 390    0 1140   0 1.000000000
##             SPEC Informedness      PREC       NPV      MARK         F1
## 759  1.000000000  0.002564103 1.0000000 0.7455853 0.7455853 0.00511509
## 555  1.000000000  0.005128205 1.0000000 0.7460733 0.7460733 0.01020408
## 1529 1.000000000  0.007692308 1.0000000 0.7465619 0.7465619 0.01526718
## 967  1.000000000  0.010256410 1.0000000 0.7470511 0.7470511 0.02030457
## 136  1.000000000  0.012820513 1.0000000 0.7475410 0.7475410 0.02531646
## 1455 1.000000000  0.015384615 1.0000000 0.7480315 0.7480315 0.03030303
## 1129 1.000000000  0.017948718 1.0000000 0.7485227 0.7485227 0.03526448
## 517  1.000000000  0.020512821 1.0000000 0.7490145 0.7490145 0.04020101
## 1446 1.000000000  0.023076923 1.0000000 0.7495069 0.7495069 0.04511278
## 1331 1.000000000  0.025641026 1.0000000 0.7500000 0.7500000 0.05000000
## 203  1.000000000  0.028205128 1.0000000 0.7504937 0.7504937 0.05486284
## 169  1.000000000  0.030769231 1.0000000 0.7509881 0.7509881 0.05970149
## 1022 0.999122807  0.029892038 0.9230769 0.7508240 0.6739009 0.05955335
## 1082 0.999122807  0.032456140 0.9285714 0.7513193 0.6798907 0.06435644
## 1465 0.998245614  0.031578947 0.8666667 0.7511551 0.6178218 0.06419753
## 1102 0.997368421  0.030701754 0.8125000 0.7509908 0.5634908 0.06403941
## 917  0.997368421  0.033265857 0.8235294 0.7514871 0.5750165 0.06879607
## 1330 0.997368421  0.035829960 0.8333333 0.7519841 0.5853175 0.07352941
## 121  0.997368421  0.038394062 0.8421053 0.7524818 0.5945871 0.07823961
## 721  0.997368421  0.040958165 0.8500000 0.7529801 0.6029801 0.08292683
## 24   0.997368421  0.043522267 0.8571429 0.7534791 0.6106220 0.08759124
## 1329 0.997368421  0.046086370 0.8636364 0.7539788 0.6176151 0.09223301
## 598  0.997368421  0.048650472 0.8695652 0.7544791 0.6240443 0.09685230
## 218  0.997368421  0.051214575 0.8750000 0.7549801 0.6299801 0.10144928
## 602  0.997368421  0.053778677 0.8800000 0.7554817 0.6354817 0.10602410
## 1087 0.997368421  0.056342780 0.8846154 0.7559840 0.6405994 0.11057692
## 18   0.997368421  0.058906883 0.8888889 0.7564870 0.6453759 0.11510791
## 764  0.997368421  0.061470985 0.8928571 0.7569907 0.6498478 0.11961722
## 262  0.997368421  0.064035088 0.8965517 0.7574950 0.6540467 0.12410501
## 1126 0.997368421  0.066599190 0.9000000 0.7580000 0.6580000 0.12857143
## 480  0.997368421  0.069163293 0.9032258 0.7585057 0.6617315 0.13301663
## 132  0.996491228  0.068286100 0.8750000 0.7583445 0.6333445 0.13270142
## 1083 0.996491228  0.070850202 0.8787879 0.7588510 0.6376389 0.13711584
## 485  0.996491228  0.073414305 0.8823529 0.7593583 0.6417112 0.14150943
## 726  0.996491228  0.075978408 0.8857143 0.7598662 0.6455805 0.14588235
## 862  0.995614035  0.075101215 0.8611111 0.7597055 0.6208166 0.14553991
## 484  0.995614035  0.077665317 0.8648649 0.7602143 0.6250792 0.14988290
## 1325 0.995614035  0.080229420 0.8684211 0.7607239 0.6291449 0.15420561
## 1205 0.995614035  0.082793522 0.8717949 0.7612341 0.6330289 0.15850816
## 796  0.995614035  0.085357625 0.8750000 0.7617450 0.6367450 0.16279070
## 1009 0.995614035  0.087921727 0.8780488 0.7622565 0.6403053 0.16705336
## 1085 0.995614035  0.090485830 0.8809524 0.7627688 0.6437212 0.17129630
## 1335 0.995614035  0.093049933 0.8837209 0.7632818 0.6470027 0.17551963
## 1122 0.995614035  0.095614035 0.8863636 0.7637954 0.6501591 0.17972350
## 999  0.995614035  0.098178138 0.8888889 0.7643098 0.6531987 0.18390805
## 763  0.995614035  0.100742240 0.8913043 0.7648248 0.6561291 0.18807339
## 1161 0.995614035  0.103306343 0.8936170 0.7653405 0.6589575 0.19221968
## 1371 0.995614035  0.105870445 0.8958333 0.7658570 0.6616903 0.19634703
## 392  0.995614035  0.108434548 0.8979592 0.7663741 0.6643333 0.20045558
## 1410 0.994736842  0.107557355 0.8800000 0.7662162 0.6462162 0.20000000
## 1334 0.994736842  0.110121457 0.8823529 0.7667343 0.6490872 0.20408163
## 477  0.994736842  0.112685560 0.8846154 0.7672530 0.6518684 0.20814480
## 1008 0.994736842  0.115249663 0.8867925 0.7677725 0.6545650 0.21218962
## 247  0.994736842  0.117813765 0.8888889 0.7682927 0.6571816 0.21621622
## 878  0.994736842  0.120377868 0.8909091 0.7688136 0.6597227 0.22022472
## 1089 0.994736842  0.122941970 0.8928571 0.7693351 0.6621923 0.22421525
## 756  0.994736842  0.125506073 0.8947368 0.7698574 0.6645943 0.22818792
## 399  0.994736842  0.128070175 0.8965517 0.7703804 0.6669322 0.23214286
## 960  0.994736842  0.130634278 0.8983051 0.7709041 0.6692092 0.23608018
## 27   0.994736842  0.133198381 0.9000000 0.7714286 0.6714286 0.24000000
## 450  0.993859649  0.132321188 0.8852459 0.7712730 0.6565189 0.23946785
## 34   0.993859649  0.134885290 0.8870968 0.7717984 0.6588951 0.24336283
## 1447 0.993859649  0.137449393 0.8888889 0.7723245 0.6612134 0.24724062
## 775  0.992982456  0.136572200 0.8750000 0.7721692 0.6471692 0.24669604
## 1365 0.992982456  0.139136302 0.8769231 0.7726962 0.6496193 0.25054945
## 1203 0.992982456  0.141700405 0.8787879 0.7732240 0.6520119 0.25438596
## 1288 0.992105263  0.140823212 0.8656716 0.7730690 0.6387407 0.25382932
## 1251 0.992105263  0.143387314 0.8676471 0.7735978 0.6412449 0.25764192
## 1042 0.992105263  0.145951417 0.8695652 0.7741273 0.6436925 0.26143791
## 168  0.991228070  0.145074224 0.8571429 0.7739726 0.6311155 0.26086957
## 312  0.991228070  0.147638327 0.8591549 0.7745031 0.6336580 0.26464208
## 515  0.991228070  0.150202429 0.8611111 0.7750343 0.6361454 0.26839827
## 251  0.991228070  0.152766532 0.8630137 0.7755662 0.6385799 0.27213823
## 252  0.991228070  0.155330634 0.8648649 0.7760989 0.6409638 0.27586207
## 720  0.991228070  0.157894737 0.8666667 0.7766323 0.6432990 0.27956989
## 882  0.991228070  0.160458839 0.8684211 0.7771664 0.6455875 0.28326180
## 1328 0.991228070  0.163022942 0.8701299 0.7777013 0.6478312 0.28693790
## 846  0.991228070  0.165587045 0.8717949 0.7782369 0.6500318 0.29059829
## 256  0.991228070  0.168151147 0.8734177 0.7787733 0.6521910 0.29424307
## 1314 0.990350877  0.167273954 0.8625000 0.7786207 0.6411207 0.29361702
## 146  0.990350877  0.169838057 0.8641975 0.7791580 0.6433556 0.29723992
## 276  0.990350877  0.172402159 0.8658537 0.7796961 0.6455498 0.30084746
## 148  0.989473684  0.171524966 0.8554217 0.7795439 0.6349656 0.30021142
## 724  0.989473684  0.174089069 0.8571429 0.7800830 0.6372258 0.30379747
## 604  0.989473684  0.176653171 0.8588235 0.7806228 0.6394464 0.30736842
## 174  0.988596491  0.175775978 0.8488372 0.7804709 0.6293081 0.30672269
## 1453 0.988596491  0.178340081 0.8505747 0.7810118 0.6315865 0.31027254
## 725  0.988596491  0.180904184 0.8522727 0.7815534 0.6338261 0.31380753
## 1206 0.988596491  0.183468286 0.8539326 0.7820958 0.6360284 0.31732777
## 193  0.988596491  0.186032389 0.8555556 0.7826389 0.6381944 0.32083333
## 1247 0.988596491  0.188596491 0.8571429 0.7831828 0.6403256 0.32432432
## 196  0.988596491  0.191160594 0.8586957 0.7837274 0.6424231 0.32780083
## 843  0.988596491  0.193724696 0.8602151 0.7842728 0.6444878 0.33126294
## 718  0.988596491  0.196288799 0.8617021 0.7848189 0.6465211 0.33471074
## 722  0.988596491  0.198852901 0.8631579 0.7853659 0.6485237 0.33814433
## 273  0.988596491  0.201417004 0.8645833 0.7859135 0.6504969 0.34156379
## 233  0.988596491  0.203981107 0.8659794 0.7864620 0.6524413 0.34496920
## 125  0.988596491  0.206545209 0.8673469 0.7870112 0.6543581 0.34836066
## 1528 0.988596491  0.209109312 0.8686869 0.7875611 0.6562480 0.35173824
## 1128 0.988596491  0.211673414 0.8700000 0.7881119 0.6581119 0.35510204
## 637  0.988596491  0.214237517 0.8712871 0.7886634 0.6599505 0.35845214
## 92   0.988596491  0.216801619 0.8725490 0.7892157 0.6617647 0.36178862
## 82   0.988596491  0.219365722 0.8737864 0.7897687 0.6635552 0.36511156
## 1004 0.988596491  0.221929825 0.8750000 0.7903226 0.6653226 0.36842105
## 479  0.988596491  0.224493927 0.8761905 0.7908772 0.6670677 0.37171717
## 398  0.988596491  0.227058030 0.8773585 0.7914326 0.6687911 0.37500000
## 454  0.987719298  0.226180837 0.8691589 0.7912860 0.6604449 0.37424547
## 1249 0.987719298  0.228744939 0.8703704 0.7918425 0.6622128 0.37751004
## 1262 0.986842105  0.227867746 0.8623853 0.7916960 0.6540813 0.37675351
## 1504 0.985964912  0.226990553 0.8545455 0.7915493 0.6460948 0.37600000
## 171  0.985087719  0.226113360 0.8468468 0.7914024 0.6382492 0.37524950
## 120  0.985087719  0.228677463 0.8482143 0.7919605 0.6401748 0.37848606
## 150  0.985087719  0.231241565 0.8495575 0.7925194 0.6420769 0.38170974
## 838  0.985087719  0.233805668 0.8508772 0.7930791 0.6439563 0.38492063
## 887  0.985087719  0.236369771 0.8521739 0.7936396 0.6458135 0.38811881
## 842  0.985087719  0.238933873 0.8534483 0.7942008 0.6476491 0.39130435
## 1155 0.984210526  0.238056680 0.8461538 0.7940552 0.6402090 0.39053254
## 7    0.984210526  0.243184885 0.8487395 0.7951807 0.6439202 0.39685658
## 43   0.984210526  0.243184885 0.8487395 0.7951807 0.6439202 0.39685658
## 767  0.984210526  0.245748988 0.8500000 0.7957447 0.6457447 0.40000000
## 29   0.984210526  0.248313090 0.8512397 0.7963094 0.6475491 0.40313112
## 900  0.983333333  0.247435897 0.8442623 0.7961648 0.6404271 0.40234375
## 1525 0.983333333  0.250000000 0.8455285 0.7967306 0.6422591 0.40545809
## 391  0.983333333  0.252564103 0.8467742 0.7972973 0.6440715 0.40856031
## 1210 0.983333333  0.255128205 0.8480000 0.7978648 0.6458648 0.41165049
## 402  0.983333333  0.257692308 0.8492063 0.7984330 0.6476394 0.41472868
## 128  0.983333333  0.260256410 0.8503937 0.7990021 0.6493958 0.41779497
## 1207 0.983333333  0.262820513 0.8515625 0.7995720 0.6511345 0.42084942
## 1246 0.983333333  0.265384615 0.8527132 0.8001428 0.6528559 0.42389210
## 458  0.982456140  0.264507422 0.8461538 0.8000000 0.6461538 0.42307692
## 145  0.981578947  0.263630229 0.8396947 0.7998570 0.6395517 0.42226488
## 1527 0.981578947  0.266194332 0.8409091 0.8004292 0.6413383 0.42528736
## 885  0.981578947  0.268758435 0.8421053 0.8010021 0.6431074 0.42829828
## 601  0.981578947  0.271322537 0.8432836 0.8015759 0.6448595 0.43129771
## 126  0.981578947  0.273886640 0.8444444 0.8021505 0.6465950 0.43428571
## 179  0.981578947  0.276450742 0.8455882 0.8027260 0.6483142 0.43726236
## 108  0.980701754  0.275573549 0.8394161 0.8025844 0.6420004 0.43643264
## 393  0.980701754  0.278137652 0.8405797 0.8031609 0.6437406 0.43939394
## 101  0.980701754  0.280701754 0.8417266 0.8037383 0.6454649 0.44234405
## 840  0.980701754  0.283265857 0.8428571 0.8043165 0.6471737 0.44528302
## 712  0.979824561  0.282388664 0.8368794 0.8041757 0.6410551 0.44444444
## 408  0.978947368  0.281511471 0.8309859 0.8040346 0.6350205 0.44360902
## 2    0.978947368  0.284075574 0.8321678 0.8046143 0.6367821 0.44652908
## 1088 0.978947368  0.286639676 0.8333333 0.8051948 0.6385281 0.44943820
## 104  0.978947368  0.289203779 0.8344828 0.8057762 0.6402589 0.45233645
## 799  0.978947368  0.291767881 0.8356164 0.8063584 0.6419748 0.45522388
## 1167 0.978070175  0.290890688 0.8299320 0.8062184 0.6361503 0.45437616
## 114  0.978070175  0.293454791 0.8310811 0.8068017 0.6378828 0.45724907
## 1248 0.978070175  0.296018893 0.8322148 0.8073860 0.6396007 0.46011132
## 1250 0.978070175  0.298582996 0.8333333 0.8079710 0.6413043 0.46296296
## 445  0.977192982  0.297705803 0.8278146 0.8078318 0.6356463 0.46210721
## 961  0.977192982  0.300269906 0.8289474 0.8084180 0.6373654 0.46494465
## 240  0.977192982  0.302834008 0.8300654 0.8090051 0.6390704 0.46777164
## 405  0.977192982  0.305398111 0.8311688 0.8095930 0.6407619 0.47058824
## 1201 0.976315789  0.304520918 0.8258065 0.8094545 0.6352610 0.46972477
## 483  0.976315789  0.307085020 0.8269231 0.8100437 0.6369667 0.47252747
## 1266 0.975438596  0.306207827 0.8216561 0.8099053 0.6315614 0.47166362
## 475  0.975438596  0.308771930 0.8227848 0.8104956 0.6332804 0.47445255
## 307  0.975438596  0.311336032 0.8238994 0.8110868 0.6349862 0.47723133
## 1038 0.974561404  0.310458839 0.8187500 0.8109489 0.6296989 0.47636364
## 1194 0.973684211  0.309581646 0.8136646 0.8108108 0.6244754 0.47549909
## 1164 0.973684211  0.312145749 0.8148148 0.8114035 0.6262183 0.47826087
## 1451 0.973684211  0.314709852 0.8159509 0.8119971 0.6279480 0.48101266
## 397  0.973684211  0.317273954 0.8170732 0.8125915 0.6296647 0.48375451
## 1175 0.972807018  0.316396761 0.8121212 0.8124542 0.6245754 0.48288288
## 1414 0.971929825  0.315519568 0.8072289 0.8123167 0.6195456 0.48201439
## 237  0.971929825  0.318083671 0.8083832 0.8129127 0.6212959 0.48473968
## 1506 0.971052632  0.317206478 0.8035714 0.8127753 0.6163468 0.48387097
## 634  0.971052632  0.319770580 0.8047337 0.8133725 0.6181062 0.48658318
## 257  0.971052632  0.322334683 0.8058824 0.8139706 0.6198529 0.48928571
## 968  0.971052632  0.324898785 0.8070175 0.8145695 0.6215871 0.49197861
## 175  0.971052632  0.327462888 0.8081395 0.8151694 0.6233089 0.49466192
## 835  0.970175439  0.326585695 0.8034682 0.8150332 0.6185014 0.49378330
## 1208 0.970175439  0.329149798 0.8045977 0.8156342 0.6202319 0.49645390
## 95   0.969298246  0.328272605 0.8000000 0.8154982 0.6154982 0.49557522
## 77   0.969298246  0.330836707 0.8011364 0.8161004 0.6172368 0.49823322
## 1523 0.968421053  0.329959514 0.7966102 0.8159645 0.6125747 0.49735450
## 111  0.968421053  0.332523617 0.7977528 0.8165680 0.6143209 0.50000000
## 702  0.967543860  0.331646424 0.7932961 0.8164323 0.6097284 0.49912127
## 1212 0.967543860  0.334210526 0.7944444 0.8170370 0.6114815 0.50175439
## 867  0.966666667  0.333333333 0.7900552 0.8169014 0.6069567 0.50087566
## 17   0.966666667  0.335897436 0.7912088 0.8175074 0.6087162 0.50349650
## 395  0.966666667  0.338461538 0.7923497 0.8181143 0.6104641 0.50610820
## 55   0.965789474  0.337584345 0.7880435 0.8179792 0.6060227 0.50522648
## 1407 0.964912281  0.336707152 0.7837838 0.8178439 0.6016276 0.50434783
## 83   0.964912281  0.339271255 0.7849462 0.8184524 0.6033986 0.50694444
## 519  0.964912281  0.341835358 0.7860963 0.8190618 0.6051581 0.50953206
## 1061 0.964035088  0.340958165 0.7819149 0.8189270 0.6008419 0.50865052
## 1395 0.963157895  0.340080972 0.7777778 0.8187919 0.5965697 0.50777202
## 911  0.962280702  0.339203779 0.7736842 0.8186567 0.5923409 0.50689655
## 594  0.962280702  0.341767881 0.7748691 0.8192681 0.5941372 0.50946644
## 1306 0.961403509  0.340890688 0.7708333 0.8191330 0.5899664 0.50859107
## 636  0.961403509  0.343454791 0.7720207 0.8197457 0.5917664 0.51114923
## 84   0.960526316  0.342577598 0.7680412 0.8196108 0.5876520 0.51027397
## 671  0.959649123  0.341700405 0.7641026 0.8194757 0.5835782 0.50940171
## 719  0.959649123  0.344264507 0.7653061 0.8200900 0.5853961 0.51194539
## 657  0.958771930  0.343387314 0.7614213 0.8199550 0.5813763 0.51107325
## 1483 0.957894737  0.342510121 0.7575758 0.8198198 0.5773956 0.51020408
## 1450 0.957894737  0.345074224 0.7587940 0.8204358 0.5792297 0.51273345
## 597  0.957894737  0.347638327 0.7600000 0.8210526 0.5810526 0.51525424
## 528  0.957017544  0.346761134 0.7562189 0.8209180 0.5771369 0.51438240
## 996  0.956140351  0.345883941 0.7524752 0.8207831 0.5732584 0.51351351
## 184  0.956140351  0.348448043 0.7536946 0.8214017 0.5750962 0.51602024
## 940  0.955263158  0.347570850 0.7500000 0.8212670 0.5712670 0.51515152
## 290  0.954385965  0.346693657 0.7463415 0.8211321 0.5674735 0.51428571
## 765  0.954385965  0.349257760 0.7475728 0.8217523 0.5693251 0.51677852
## 987  0.953508772  0.348380567 0.7439614 0.8216175 0.5655789 0.51591290
## 643  0.953508772  0.350944669 0.7451923 0.8222390 0.5674313 0.51839465
## 1131 0.953508772  0.353508772 0.7464115 0.8228615 0.5692730 0.52086811
## 990  0.952631579  0.352631579 0.7428571 0.8227273 0.5655844 0.52000000
## 100  0.951754386  0.351754386 0.7393365 0.8225929 0.5619294 0.51913478
## 991  0.950877193  0.350877193 0.7358491 0.8224583 0.5583073 0.51827243
## 596  0.950877193  0.353441296 0.7370892 0.8230828 0.5601720 0.52072968
## 888  0.950877193  0.356005398 0.7383178 0.8237082 0.5620260 0.52317881
## 118  0.950000000  0.355128205 0.7348837 0.8235741 0.5584579 0.52231405
## 520  0.950000000  0.357692308 0.7361111 0.8242009 0.5603120 0.52475248
## 35   0.950000000  0.360256410 0.7373272 0.8248286 0.5621558 0.52718287
## 545  0.949122807  0.359379217 0.7339450 0.8246951 0.5586401 0.52631579
## 302  0.949122807  0.361943320 0.7351598 0.8253242 0.5604840 0.52873563
## 3    0.948245614  0.361066127 0.7318182 0.8251908 0.5570090 0.52786885
## 499  0.947368421  0.360188934 0.7285068 0.8250573 0.5535641 0.52700491
## 1482 0.946491228  0.359311741 0.7252252 0.8249235 0.5501488 0.52614379
## 1191 0.945614035  0.358434548 0.7219731 0.8247896 0.5467627 0.52528548
## 1041 0.945614035  0.360998650 0.7232143 0.8254211 0.5486354 0.52768730
## 79   0.944736842  0.360121457 0.7200000 0.8252874 0.5452874 0.52682927
## 351  0.944736842  0.362685560 0.7212389 0.8259202 0.5471592 0.52922078
## 559  0.943859649  0.361808367 0.7180617 0.8257866 0.5438483 0.52836305
## 1195 0.942982456  0.360931174 0.7149123 0.8256528 0.5405651 0.52750809
## 1182 0.942105263  0.360053981 0.7117904 0.8255188 0.5373092 0.52665590
## 761  0.942105263  0.362618084 0.7130435 0.8261538 0.5391973 0.52903226
## 91   0.942105263  0.365182186 0.7142857 0.8267898 0.5410756 0.53140097
## 1332 0.942105263  0.367746289 0.7155172 0.8274268 0.5429441 0.53376206
## 639  0.942105263  0.370310391 0.7167382 0.8280648 0.5448030 0.53611557
## 355  0.942105263  0.372874494 0.7179487 0.8287037 0.5466524 0.53846154
## 747  0.941228070  0.371997301 0.7148936 0.8285714 0.5434650 0.53760000
## 1165 0.940350877  0.371120108 0.7118644 0.8284389 0.5403034 0.53674121
## 1264 0.939473684  0.370242915 0.7088608 0.8283063 0.5371670 0.53588517
## 23   0.938596491  0.369365722 0.7058824 0.8281734 0.5340557 0.53503185
## 893  0.937719298  0.368488529 0.7029289 0.8280403 0.5309691 0.53418124
## 1230 0.936842105  0.367611336 0.7000000 0.8279070 0.5279070 0.53333333
## 1243 0.936842105  0.370175439 0.7012448 0.8285493 0.5297941 0.53565769
## 311  0.936842105  0.372739541 0.7024793 0.8291925 0.5316719 0.53797468
## 279  0.936842105  0.375303644 0.7037037 0.8298368 0.5335405 0.54028436
## 296  0.935964912  0.374426451 0.7008197 0.8297045 0.5305242 0.53943218
## 396  0.935964912  0.376990553 0.7020408 0.8303502 0.5323910 0.54173228
## 588  0.935087719  0.376113360 0.6991870 0.8302181 0.5294051 0.54088050
## 1253 0.935087719  0.378677463 0.7004049 0.8308652 0.5312700 0.54317111
## 1298 0.934210526  0.377800270 0.6975806 0.8307332 0.5283139 0.54231975
## 1333 0.934210526  0.380364372 0.6987952 0.8313817 0.5301769 0.54460094
## 241  0.934210526  0.382928475 0.7000000 0.8320312 0.5320312 0.54687500
## 886  0.934210526  0.385492578 0.7011952 0.8326818 0.5338770 0.54914197
## 473  0.934210526  0.388056680 0.7023810 0.8333333 0.5357143 0.55140187
## 482  0.934210526  0.390620783 0.7035573 0.8339859 0.5375432 0.55365474
## 723  0.934210526  0.393184885 0.7047244 0.8346395 0.5393639 0.55590062
## 463  0.933333333  0.392307692 0.7019608 0.8345098 0.5364706 0.55503876
## 1312 0.932456140  0.391430499 0.6992188 0.8343799 0.5335987 0.55417957
## 1370 0.932456140  0.393994602 0.7003891 0.8350353 0.5354245 0.55641422
## 349  0.931578947  0.393117409 0.6976744 0.8349057 0.5325801 0.55555556
## 1045 0.930701754  0.392240216 0.6949807 0.8347758 0.5297565 0.55469954
## 624  0.929824561  0.391363023 0.6923077 0.8346457 0.5269534 0.55384615
## 822  0.928947368  0.390485830 0.6896552 0.8345154 0.5241705 0.55299539
## 717  0.928947368  0.393049933 0.6908397 0.8351735 0.5260132 0.55521472
## 435  0.928070175  0.392172740 0.6882129 0.8350434 0.5232563 0.55436447
## 1496 0.927192982  0.391295547 0.6856061 0.8349131 0.5205192 0.55351682
## 892  0.926315789  0.390418354 0.6830189 0.8347826 0.5178015 0.55267176
## 325  0.925438596  0.389541161 0.6804511 0.8346519 0.5151030 0.55182927
## 1125 0.925438596  0.392105263 0.6816479 0.8353127 0.5169607 0.55403349
## 1476 0.924561404  0.391228070 0.6791045 0.8351823 0.5142867 0.55319149
## 72   0.924561404  0.393792173 0.6802974 0.8358446 0.5161420 0.55538695
## 512  0.924561404  0.396356275 0.6814815 0.8365079 0.5179894 0.55757576
## 195  0.924561404  0.398920378 0.6826568 0.8371724 0.5198292 0.55975794
## 660  0.923684211  0.398043185 0.6801471 0.8370429 0.5171900 0.55891239
## 849  0.923684211  0.400607287 0.6813187 0.8377088 0.5190275 0.56108597
## 5    0.923684211  0.403171390 0.6824818 0.8383758 0.5208575 0.56325301
## 382  0.922807018  0.402294197 0.6800000 0.8382470 0.5182470 0.56240602
## 1286 0.922807018  0.404858300 0.6811594 0.8389155 0.5200749 0.56456456
## 403  0.922807018  0.407422402 0.6823105 0.8395850 0.5218955 0.56671664
## 650  0.921929825  0.406545209 0.6798561 0.8394569 0.5193130 0.56586826
## 345  0.921052632  0.405668016 0.6774194 0.8393285 0.5167479 0.56502242
## 1480 0.920175439  0.404790823 0.6750000 0.8392000 0.5142000 0.56417910
## 87   0.919298246  0.403913630 0.6725979 0.8390713 0.5116691 0.56333830
## 167  0.919298246  0.406477733 0.6737589 0.8397436 0.5135025 0.56547619
## 107  0.919298246  0.409041835 0.6749117 0.8404170 0.5153287 0.56760773
## 1111 0.918421053  0.408164642 0.6725352 0.8402889 0.5128241 0.56676558
## 1074 0.917543860  0.407287449 0.6701754 0.8401606 0.5103361 0.56592593
## 1173 0.916666667  0.406410256 0.6678322 0.8400322 0.5078643 0.56508876
## 1093 0.916666667  0.408974359 0.6689895 0.8407080 0.5096975 0.56720827
## 1133 0.916666667  0.411538462 0.6701389 0.8413849 0.5115238 0.56932153
## 1104 0.915789474  0.410661269 0.6678201 0.8412571 0.5090771 0.56848306
## 165  0.915789474  0.413225371 0.6689655 0.8419355 0.5109010 0.57058824
## 1214 0.915789474  0.415789474 0.6701031 0.8426150 0.5127181 0.57268722
## 749  0.914912281  0.414912281 0.6678082 0.8424879 0.5102961 0.57184751
## 645  0.914912281  0.417476383 0.6689420 0.8431690 0.5121109 0.57393851
## 920  0.914912281  0.420040486 0.6700680 0.8438511 0.5139192 0.57602339
## 80   0.914912281  0.422604588 0.6711864 0.8445344 0.5157209 0.57810219
## 1510 0.914035088  0.421727395 0.6689189 0.8444084 0.5133273 0.57725948
## 376  0.913157895  0.420850202 0.6666667 0.8442822 0.5109489 0.57641921
## 267  0.912280702  0.419973009 0.6644295 0.8441558 0.5085854 0.57558140
## 1127 0.912280702  0.422537112 0.6655518 0.8448416 0.5103934 0.57764877
## 750  0.911403509  0.421659919 0.6633333 0.8447154 0.5080488 0.57681159
## 646  0.911403509  0.424224022 0.6644518 0.8454028 0.5098546 0.57887120
## 1005 0.911403509  0.426788124 0.6655629 0.8460912 0.5116541 0.58092486
## 8    0.911403509  0.429352227 0.6666667 0.8467808 0.5134474 0.58297258
## 1081 0.911403509  0.431916329 0.6677632 0.8474715 0.5152346 0.58501441
## 1059 0.910526316  0.431039136 0.6655738 0.8473469 0.5129207 0.58417266
## 736  0.909649123  0.430161943 0.6633987 0.8472222 0.5106209 0.58333333
## 235  0.909649123  0.432726046 0.6644951 0.8479150 0.5124101 0.58536585
## 758  0.909649123  0.435290148 0.6655844 0.8486088 0.5141933 0.58739255
## 140  0.909649123  0.437854251 0.6666667 0.8493038 0.5159705 0.58941345
## 745  0.908771930  0.436977058 0.6645161 0.8491803 0.5136965 0.58857143
## 642  0.908771930  0.439541161 0.6655949 0.8498769 0.5154718 0.59058488
## 495  0.907894737  0.438663968 0.6634615 0.8497537 0.5132152 0.58974359
## 1105 0.907017544  0.437786775 0.6613419 0.8496302 0.5109721 0.58890469
## 109  0.906140351  0.436909582 0.6592357 0.8495066 0.5087422 0.58806818
## 950  0.905263158  0.436032389 0.6571429 0.8493827 0.5065256 0.58723404
## 571  0.904385965  0.435155196 0.6550633 0.8492586 0.5043219 0.58640227
## 244  0.903508772  0.434278003 0.6529968 0.8491344 0.5021312 0.58557284
## 1007 0.903508772  0.436842105 0.6540881 0.8498350 0.5039230 0.58757062
## 586  0.902631579  0.435964912 0.6520376 0.8497110 0.5017486 0.58674189
## 476  0.902631579  0.438529015 0.6531250 0.8504132 0.5035382 0.58873239
## 884  0.902631579  0.441093117 0.6542056 0.8511166 0.5053222 0.59071730
## 1468 0.901754386  0.440215924 0.6521739 0.8509934 0.5031673 0.58988764
## 6    0.900877193  0.439338731 0.6501548 0.8508699 0.5010247 0.58906031
## 1012 0.900000000  0.438461538 0.6481481 0.8507463 0.4988944 0.58823529
## 250  0.900000000  0.441025641 0.6492308 0.8514523 0.5006831 0.59020979
## 964  0.900000000  0.443589744 0.6503067 0.8521595 0.5024662 0.59217877
## 1003 0.900000000  0.446153846 0.6513761 0.8528678 0.5042440 0.59414226
## 572  0.899122807  0.445276653 0.6493902 0.8527454 0.5021357 0.59331476
## 201  0.899122807  0.447840756 0.6504559 0.8534555 0.5039114 0.59527121
## 1513 0.898245614  0.446963563 0.6484848 0.8533333 0.5018182 0.59444444
## 238  0.898245614  0.449527665 0.6495468 0.8540450 0.5035919 0.59639390
## 1508 0.897368421  0.448650472 0.6475904 0.8539232 0.5015136 0.59556787
## 1064 0.896491228  0.447773279 0.6456456 0.8538012 0.4994468 0.59474412
## 361  0.895614035  0.446896086 0.6437126 0.8536789 0.4973915 0.59392265
## 219  0.895614035  0.449460189 0.6447761 0.8543933 0.4991694 0.59586207
## 474  0.895614035  0.452024291 0.6458333 0.8551089 0.5009422 0.59779614
## 1530 0.895614035  0.454588394 0.6468843 0.8558256 0.5027099 0.59972490
## 1418 0.894736842  0.453711201 0.6449704 0.8557047 0.5006751 0.59890110
## 75   0.894736842  0.456275304 0.6460177 0.8564232 0.5024409 0.60082305
## 1349 0.893859649  0.455398111 0.6441176 0.8563025 0.5004202 0.60000000
## 1219 0.892982456  0.454520918 0.6422287 0.8561817 0.4984104 0.59917921
## 804  0.892105263  0.453643725 0.6403509 0.8560606 0.4964115 0.59836066
## 969  0.892105263  0.456207827 0.6413994 0.8567818 0.4981812 0.60027285
## 1092 0.892105263  0.458771930 0.6424419 0.8575042 0.4999461 0.60217984
## 1431 0.891228070  0.457894737 0.6405797 0.8573840 0.4979637 0.60136054
## 1448 0.891228070  0.460458839 0.6416185 0.8581081 0.4997266 0.60326087
## 640  0.891228070  0.463022942 0.6426513 0.8588335 0.5014848 0.60515604
## 44   0.891228070  0.465587045 0.6436782 0.8595601 0.5032382 0.60704607
## 1268 0.890350877  0.464709852 0.6418338 0.8594412 0.5012750 0.60622463
## 234  0.889473684  0.463832659 0.6400000 0.8593220 0.4993220 0.60540541
## 603  0.889473684  0.466396761 0.6410256 0.8600509 0.5010765 0.60728745
## 1351 0.888596491  0.465519568 0.6392045 0.8599321 0.4991366 0.60646900
## 317  0.887719298  0.464642375 0.6373938 0.8598131 0.4972069 0.60565276
## 189  0.887719298  0.467206478 0.6384181 0.8605442 0.4989623 0.60752688
## 1367 0.887719298  0.469770580 0.6394366 0.8612766 0.5007132 0.60939597
## 691  0.886842105  0.468893387 0.6376404 0.8611584 0.4987989 0.60857909
## 897  0.885964912  0.468016194 0.6358543 0.8610401 0.4968944 0.60776439
## 666  0.885087719  0.467139001 0.6340782 0.8609215 0.4949997 0.60695187
## 147  0.884210526  0.466261808 0.6323120 0.8608027 0.4931147 0.60614152
## 152  0.883333333  0.465384615 0.6305556 0.8606838 0.4912393 0.60533333
## 377  0.882456140  0.464507422 0.6288089 0.8605646 0.4893734 0.60452730
## 558  0.881578947  0.463630229 0.6270718 0.8604452 0.4875170 0.60372340
## 190  0.880701754  0.462753036 0.6253444 0.8603256 0.4856700 0.60292165
## 99   0.880701754  0.465317139 0.6263736 0.8610635 0.4874371 0.60477454
## 1067 0.879824561  0.464439946 0.6246575 0.8609442 0.4856017 0.60397351
## 1048 0.878947368  0.463562753 0.6229508 0.8608247 0.4837756 0.60317460
## 1320 0.878070175  0.462685560 0.6212534 0.8607051 0.4819585 0.60237781
## 133  0.878070175  0.465249663 0.6222826 0.8614458 0.4837284 0.60422164
## 1115 0.877192982  0.464372470 0.6205962 0.8613264 0.4819226 0.60342556
## 1090 0.877192982  0.466936572 0.6216216 0.8620690 0.4836906 0.60526316
## 1366 0.877192982  0.469500675 0.6226415 0.8628128 0.4854543 0.60709593
## 205  0.876315789  0.468623482 0.6209677 0.8626943 0.4836620 0.60629921
## 142  0.875438596  0.467746289 0.6193029 0.8625756 0.4818786 0.60550459
## 1234 0.874561404  0.466869096 0.6176471 0.8624567 0.4801038 0.60471204
## 1452 0.874561404  0.469433198 0.6186667 0.8632035 0.4818701 0.60653595
## 117  0.874561404  0.471997301 0.6196809 0.8639515 0.4836323 0.60835509
## 1296 0.873684211  0.471120108 0.6180371 0.8638335 0.4818706 0.60756193
## 710  0.872807018  0.470242915 0.6164021 0.8637153 0.4801174 0.60677083
## 1311 0.871929825  0.469365722 0.6147757 0.8635969 0.4783726 0.60598179
## 962  0.871929825  0.471929825 0.6157895 0.8643478 0.4801373 0.60779221
## 16   0.871052632  0.471052632 0.6141732 0.8642298 0.4784030 0.60700389
## 521  0.871052632  0.473616734 0.6151832 0.8649826 0.4801658 0.60880829
## 1374 0.871052632  0.476180837 0.6161880 0.8657367 0.4819247 0.61060802
## 942  0.870175439  0.475303644 0.6145833 0.8656195 0.4802029 0.60981912
## 438  0.869298246  0.474426451 0.6129870 0.8655022 0.4784892 0.60903226
## 1429 0.868421053  0.473549258 0.6113990 0.8653846 0.4767836 0.60824742
## 760  0.868421053  0.476113360 0.6124031 0.8661417 0.4785448 0.61003861
## 465  0.867543860  0.475236167 0.6108247 0.8660245 0.4768493 0.60925450
## 324  0.866666667  0.474358974 0.6092545 0.8659071 0.4751616 0.60847240
## 600  0.866666667  0.476923077 0.6102564 0.8666667 0.4769231 0.61025641
## 326  0.865789474  0.476045884 0.6086957 0.8665496 0.4752453 0.60947503
## 901  0.864912281  0.475168691 0.6071429 0.8664323 0.4735752 0.60869565
## 406  0.864912281  0.477732794 0.6081425 0.8671944 0.4753369 0.61047254
## 1011 0.864912281  0.480296896 0.6091371 0.8679577 0.4770948 0.61224490
## 1171 0.864035088  0.479419703 0.6075949 0.8678414 0.4754363 0.61146497
## 649  0.863157895  0.478542510 0.6060606 0.8677249 0.4737855 0.61068702
## 1285 0.863157895  0.481106613 0.6070529 0.8684907 0.4755436 0.61245235
## 801  0.862280702  0.480229420 0.6055276 0.8683746 0.4739022 0.61167513
## 768  0.862280702  0.482793522 0.6065163 0.8691424 0.4756586 0.61343473
## 1144 0.861403509  0.481916329 0.6050000 0.8690265 0.4740265 0.61265823
## 654  0.860526316  0.481039136 0.6034913 0.8689105 0.4724018 0.61188369
## 979  0.859649123  0.480161943 0.6019900 0.8687943 0.4707844 0.61111111
## 1030 0.858771930  0.479284750 0.6004963 0.8686779 0.4691742 0.61034048
## 427  0.857894737  0.478407557 0.5990099 0.8685613 0.4675712 0.60957179
## 321  0.857017544  0.477530364 0.5975309 0.8684444 0.4659753 0.60880503
## 1274 0.856140351  0.476653171 0.5960591 0.8683274 0.4643865 0.60804020
## 338  0.855263158  0.475775978 0.5945946 0.8682102 0.4628047 0.60727729
## 1190 0.854385965  0.474898785 0.5931373 0.8680927 0.4612299 0.60651629
## 1396 0.853508772  0.474021592 0.5916870 0.8679750 0.4596621 0.60575720
## 37   0.852631579  0.473144399 0.5902439 0.8678571 0.4581010 0.60500000
## 683  0.851754386  0.472267206 0.5888078 0.8677391 0.4565468 0.60424469
## 677  0.850877193  0.471390013 0.5873786 0.8676208 0.4549994 0.60349127
## 1254 0.850877193  0.473954116 0.5883777 0.8683975 0.4567752 0.60523039
## 1489 0.850000000  0.473076923 0.5869565 0.8682796 0.4552361 0.60447761
## 94   0.849122807  0.472199730 0.5855422 0.8681614 0.4537036 0.60372671
## 664  0.848245614  0.471322537 0.5841346 0.8680431 0.4521777 0.60297767
## 47   0.847368421  0.470445344 0.5827338 0.8679245 0.4506583 0.60223048
## 1389 0.846491228  0.469568151 0.5813397 0.8678058 0.4491455 0.60148515
## 358  0.845614035  0.468690958 0.5799523 0.8676868 0.4476390 0.60074166
## 748  0.844736842  0.467813765 0.5785714 0.8675676 0.4461390 0.60000000
## 1417 0.843859649  0.466936572 0.5771971 0.8674482 0.4446453 0.59926017
## 227  0.843859649  0.469500675 0.5781991 0.8682310 0.4464301 0.60098522
## 943  0.842982456  0.468623482 0.5768322 0.8681120 0.4449442 0.60024600
## 1065 0.842105263  0.467746289 0.5754717 0.8679928 0.4434645 0.59950860
## 1006 0.842105263  0.470310391 0.5764706 0.8687783 0.4452489 0.60122699
## 837  0.841228070  0.469433198 0.5751174 0.8686594 0.4437768 0.60049020
## 845  0.841228070  0.471997301 0.5761124 0.8694470 0.4455594 0.60220318
## 371  0.840350877  0.471120108 0.5747664 0.8693285 0.4440948 0.60146699
## 451  0.839473684  0.470242915 0.5734266 0.8692098 0.4426364 0.60073260
## 271  0.838596491  0.469365722 0.5720930 0.8690909 0.4411839 0.60000000
## 437  0.837719298  0.468488529 0.5707657 0.8689718 0.4397375 0.59926918
## 622  0.836842105  0.467611336 0.5694444 0.8688525 0.4382969 0.59854015
## 1390 0.835964912  0.466734143 0.5681293 0.8687329 0.4368622 0.59781288
## 116  0.835087719  0.465856950 0.5668203 0.8686131 0.4354334 0.59708738
## 254  0.834210526  0.464979757 0.5655172 0.8684932 0.4340104 0.59636364
## 1327 0.834210526  0.467543860 0.5665138 0.8692870 0.4358008 0.59806295
## 543  0.833333333  0.466666667 0.5652174 0.8691674 0.4343848 0.59733978
## 161  0.832456140  0.465789474 0.5639269 0.8690476 0.4329746 0.59661836
## 1484 0.831578947  0.464912281 0.5626424 0.8689276 0.4315700 0.59589867
## 854  0.830701754  0.464035088 0.5613636 0.8688073 0.4301710 0.59518072
## 1151 0.829824561  0.463157895 0.5600907 0.8686869 0.4287776 0.59446450
## 268  0.828947368  0.462280702 0.5588235 0.8685662 0.4273897 0.59375000
## 353  0.828947368  0.464844804 0.5598194 0.8693652 0.4291846 0.59543818
## 692  0.828070175  0.463967611 0.5585586 0.8692449 0.4278035 0.59472422
## 401  0.828070175  0.466531714 0.5595506 0.8700461 0.4295966 0.59640719
## 123  0.827192982  0.465654521 0.5582960 0.8699262 0.4282222 0.59569378
## 788  0.826315789  0.464777328 0.5570470 0.8698061 0.4268531 0.59498208
## 523  0.826315789  0.467341430 0.5580357 0.8706100 0.4286457 0.59665871
## 635  0.826315789  0.469905533 0.5590200 0.8714154 0.4304354 0.59833135
## 561  0.825438596  0.469028340 0.5577778 0.8712963 0.4290741 0.59761905
## 430  0.824561404  0.468151147 0.5565410 0.8711770 0.4277180 0.59690844
## 1189 0.823684211  0.467273954 0.5553097 0.8710575 0.4263672 0.59619952
## 510  0.822807018  0.466396761 0.5540839 0.8709378 0.4250217 0.59549229
## 682  0.821929825  0.465519568 0.5528634 0.8708178 0.4236813 0.59478673
## 1458 0.821929825  0.468083671 0.5538462 0.8716279 0.4254741 0.59644970
## 971  0.821929825  0.470647773 0.5548246 0.8724395 0.4272640 0.59810875
## 266  0.821052632  0.469770580 0.5536105 0.8723206 0.4259311 0.59740260
## 868  0.820175439  0.468893387 0.5524017 0.8722015 0.4246032 0.59669811
## 1245 0.820175439  0.471457490 0.5533769 0.8730159 0.4263928 0.59835100
## 1116 0.819298246  0.470580297 0.5521739 0.8728972 0.4250711 0.59764706
## 215  0.818421053  0.469703104 0.5509761 0.8727783 0.4237544 0.59694477
## 31   0.817543860  0.468825911 0.5497835 0.8726592 0.4224427 0.59624413
## 944  0.816666667  0.467948718 0.5485961 0.8725398 0.4211359 0.59554513
## 863  0.815789474  0.467071525 0.5474138 0.8724203 0.4198341 0.59484778
## 362  0.814912281  0.466194332 0.5462366 0.8723005 0.4185370 0.59415205
## 1237 0.814035088  0.465317139 0.5450644 0.8721805 0.4172448 0.59345794
## 1310 0.813157895  0.464439946 0.5438972 0.8720602 0.4159574 0.59276546
## 496  0.812280702  0.463562753 0.5427350 0.8719397 0.4146748 0.59207459
## 1091 0.812280702  0.466126856 0.5437100 0.8727615 0.4164716 0.59371362
## 1381 0.811403509  0.465249663 0.5425532 0.8726415 0.4151947 0.59302326
## 1263 0.810526316  0.464372470 0.5414013 0.8725212 0.4139225 0.59233449
## 1292 0.809649123  0.463495277 0.5402542 0.8724008 0.4126550 0.59164733
## 439  0.808771930  0.462618084 0.5391121 0.8722800 0.4113921 0.59096176
## 1427 0.807894737  0.461740891 0.5379747 0.8721591 0.4101338 0.59027778
## 921  0.807017544  0.460863698 0.5368421 0.8720379 0.4088800 0.58959538
## 819  0.806140351  0.459986505 0.5357143 0.8719165 0.4076308 0.58891455
## 339  0.805263158  0.459109312 0.5345912 0.8717949 0.4063861 0.58823529
## 228  0.804385965  0.458232119 0.5334728 0.8716730 0.4051458 0.58755760
## 272  0.804385965  0.460796221 0.5344468 0.8725024 0.4069491 0.58918297
## 1241 0.803508772  0.459919028 0.5333333 0.8723810 0.4057143 0.58850575
## 1449 0.803508772  0.462483131 0.5343035 0.8732126 0.4075161 0.59012629
## 1412 0.802631579  0.461605938 0.5331950 0.8730916 0.4062866 0.58944954
## 223  0.801754386  0.460728745 0.5320911 0.8729704 0.4050615 0.58877434
## 1294 0.800877193  0.459851552 0.5309917 0.8728489 0.4038407 0.58810069
## 890  0.800877193  0.462415655 0.5319588 0.8736842 0.4056430 0.58971429
## 1109 0.800000000  0.461538462 0.5308642 0.8735632 0.4044274 0.58904110
## 1375 0.800000000  0.464102564 0.5318275 0.8744008 0.4062283 0.59064994
## 1060 0.799122807  0.463225371 0.5307377 0.8742802 0.4050179 0.58997722
## 239  0.799122807  0.465789474 0.5316973 0.8751201 0.4068174 0.59158134
## 1010 0.799122807  0.468353576 0.5326531 0.8759615 0.4086146 0.59318182
## 301  0.798245614  0.467476383 0.5315682 0.8758422 0.4074104 0.59250851
## 204  0.798245614  0.470040486 0.5325203 0.8766859 0.4092063 0.59410431
## 907  0.797368421  0.469163293 0.5314402 0.8765670 0.4080072 0.59343148
## 354  0.797368421  0.471727395 0.5323887 0.8774131 0.4098018 0.59502262
## 432  0.796491228  0.470850202 0.5313131 0.8772947 0.4086078 0.59435028
## 258  0.796491228  0.473414305 0.5322581 0.8781431 0.4104012 0.59593679
## 1479 0.795614035  0.472537112 0.5311871 0.8780252 0.4092123 0.59526494
## 1337 0.795614035  0.475101215 0.5321285 0.8788760 0.4110045 0.59684685
## 577  0.794736842  0.474224022 0.5310621 0.8787585 0.4098206 0.59617548
## 963  0.794736842  0.476788124 0.5320000 0.8796117 0.4116117 0.59775281
## 850  0.794736842  0.479352227 0.5329341 0.8804665 0.4134006 0.59932660
## 141  0.793859649  0.478475034 0.5318725 0.8803502 0.4122227 0.59865471
## 1486 0.792982456  0.477597841 0.5308151 0.8802337 0.4110488 0.59798432
## 210  0.792105263  0.476720648 0.5297619 0.8801170 0.4098789 0.59731544
## 734  0.791228070  0.475843455 0.5287129 0.8800000 0.4087129 0.59664804
## 679  0.790350877  0.474966262 0.5276680 0.8798828 0.4075508 0.59598214
## 881  0.790350877  0.477530364 0.5285996 0.8807429 0.4093425 0.59754738
## 452  0.789473684  0.476653171 0.5275591 0.8806262 0.4081853 0.59688196
## 265  0.788596491  0.475775978 0.5265226 0.8805093 0.4070319 0.59621802
## 1384 0.787719298  0.474898785 0.5254902 0.8803922 0.4058824 0.59555556
## 776  0.786842105  0.474021592 0.5244618 0.8802748 0.4047366 0.59489456
## 46   0.786842105  0.476585695 0.5253906 0.8811395 0.4065301 0.59645233
## 1315 0.785964912  0.475708502 0.5243665 0.8810226 0.4053891 0.59579181
## 828  0.785087719  0.474831309 0.5233463 0.8809055 0.4042518 0.59513274
## 1049 0.784210526  0.473954116 0.5223301 0.8807882 0.4031183 0.59447514
## 1098 0.783333333  0.473076923 0.5213178 0.8806706 0.4019884 0.59381898
## 42   0.782456140  0.472199730 0.5203095 0.8805528 0.4008623 0.59316428
## 798  0.782456140  0.474763833 0.5212355 0.8814229 0.4026584 0.59471366
## 707  0.781578947  0.473886640 0.5202312 0.8813056 0.4015369 0.59405941
## 289  0.780701754  0.473009447 0.5192308 0.8811881 0.4004189 0.59340659
## 1405 0.779824561  0.472132254 0.5182342 0.8810704 0.3993045 0.59275521
## 949  0.778947368  0.471255061 0.5172414 0.8809524 0.3981938 0.59210526
## 609  0.778070175  0.470377868 0.5162524 0.8808342 0.3970866 0.59145674
## 1154 0.777192982  0.469500675 0.5152672 0.8807157 0.3959829 0.59080963
## 1434 0.776315789  0.468623482 0.5142857 0.8805970 0.3948827 0.59016393
## 894  0.775438596  0.467746289 0.5133080 0.8804781 0.3937861 0.58951965
## 1509 0.774561404  0.466869096 0.5123340 0.8803589 0.3926929 0.58887677
## 606  0.774561404  0.469433198 0.5132576 0.8812375 0.3944951 0.59041394
## 695  0.773684211  0.468556005 0.5122873 0.8811189 0.3934062 0.58977149
## 68   0.773684211  0.471120108 0.5132075 0.8820000 0.3952075 0.59130435
## 727  0.773684211  0.473684211 0.5141243 0.8828829 0.3970072 0.59283388
## 821  0.772807018  0.472807018 0.5131579 0.8827655 0.3959234 0.59219089
## 160  0.771929825  0.471929825 0.5121951 0.8826479 0.3948431 0.59154930
## 662  0.771052632  0.471052632 0.5112360 0.8825301 0.3937661 0.59090909
## 766  0.771052632  0.473616734 0.5121495 0.8834171 0.3955666 0.59243243
## 500  0.770175439  0.472739541 0.5111940 0.8832998 0.3944938 0.59179266
## 74   0.769298246  0.471862348 0.5102421 0.8831823 0.3934244 0.59115426
## 1492 0.768421053  0.470985155 0.5092937 0.8830645 0.3923582 0.59051724
## 516  0.768421053  0.473549258 0.5102041 0.8839556 0.3941597 0.59203445
## 574  0.767543860  0.472672065 0.5092593 0.8838384 0.3930976 0.59139785
## 1494 0.766666667  0.471794872 0.5083179 0.8837209 0.3920389 0.59076262
## 259  0.765789474  0.470917679 0.5073801 0.8836032 0.3909833 0.59012876
## 78   0.764912281  0.470040486 0.5064457 0.8834853 0.3899310 0.58949625
## 1474 0.764035088  0.469163293 0.5055147 0.8833671 0.3888818 0.58886510
## 1050 0.763157895  0.468286100 0.5045872 0.8832487 0.3878359 0.58823529
## 1040 0.763157895  0.470850202 0.5054945 0.8841463 0.3896408 0.58974359
## 1228 0.762280702  0.469973009 0.5045704 0.8840285 0.3885989 0.58911419
## 291  0.761403509  0.469095816 0.5036496 0.8839104 0.3875600 0.58848614
## 178  0.760526316  0.468218623 0.5027322 0.8837920 0.3865243 0.58785942
## 139  0.760526316  0.470782726 0.5036364 0.8846939 0.3883302 0.58936170
## 73   0.759649123  0.469905533 0.5027223 0.8845761 0.3872984 0.58873539
## 357  0.758771930  0.469028340 0.5018116 0.8844581 0.3862697 0.58811040
## 113  0.757894737  0.468151147 0.5009042 0.8843398 0.3852440 0.58748674
## 1524 0.757017544  0.467273954 0.5000000 0.8842213 0.3842213 0.58686441
## 1226 0.756140351  0.466396761 0.4990991 0.8841026 0.3832017 0.58624339
## 245  0.755263158  0.465519568 0.4982014 0.8839836 0.3821850 0.58562368
## 524  0.755263158  0.468083671 0.4991023 0.8848921 0.3839944 0.58711721
## 243  0.755263158  0.470647773 0.5000000 0.8858025 0.3858025 0.58860759
## 1271 0.754385965  0.469770580 0.4991055 0.8856849 0.3847904 0.58798736
## 663  0.753508772  0.468893387 0.4982143 0.8855670 0.3837813 0.58736842
## 1336 0.753508772  0.471457490 0.4991087 0.8864809 0.3855896 0.58885384
## 1196 0.752631579  0.470580297 0.4982206 0.8863636 0.3845843 0.58823529
## 318  0.751754386  0.469703104 0.4973357 0.8862461 0.3835818 0.58761805
## 839  0.751754386  0.472267206 0.4982270 0.8871636 0.3853905 0.58909853
## 19   0.750877193  0.471390013 0.4973451 0.8870466 0.3843918 0.58848168
## 638  0.750877193  0.473954116 0.4982332 0.8879668 0.3862000 0.58995816
## 1084 0.750877193  0.476518219 0.4991182 0.8888889 0.3880071 0.59143156
## 883  0.750877193  0.479082321 0.5000000 0.8898129 0.3898129 0.59290188
## 122  0.750877193  0.481646424 0.5008787 0.8907388 0.3916175 0.59436913
## 249  0.750000000  0.480769231 0.5000000 0.8906250 0.3906250 0.59375000
## 14   0.749122807  0.479892038 0.4991243 0.8905109 0.3896353 0.59313215
## 232  0.748245614  0.479014845 0.4982517 0.8903967 0.3886484 0.59251559
## 938  0.747368421  0.478137652 0.4973822 0.8902821 0.3876643 0.59190031
## 652  0.746491228  0.477260459 0.4965157 0.8901674 0.3866830 0.59128631
## 871  0.745614035  0.476383266 0.4956522 0.8900524 0.3857045 0.59067358
## 518  0.745614035  0.478947368 0.4965278 0.8909853 0.3875131 0.59213251
## 589  0.744736842  0.478070175 0.4956672 0.8908709 0.3865382 0.59152017
## 66   0.743859649  0.477192982 0.4948097 0.8907563 0.3855660 0.59090909
## 277  0.743859649  0.479757085 0.4956822 0.8916930 0.3873752 0.59236326
## 1066 0.742982456  0.478879892 0.4948276 0.8915789 0.3864065 0.59175258
## 1457 0.742982456  0.481443995 0.4956971 0.8925184 0.3882155 0.59320288
## 700  0.742105263  0.480566802 0.4948454 0.8924051 0.3872504 0.59259259
## 30   0.742105263  0.483130904 0.4957118 0.8933474 0.3890592 0.59403905
## 298  0.741228070  0.482253711 0.4948630 0.8932347 0.3880977 0.59342916
## 283  0.740350877  0.481376518 0.4940171 0.8931217 0.3871388 0.59282051
## 694  0.739473684  0.480499325 0.4931741 0.8930085 0.3861825 0.59221311
## 848  0.739473684  0.483063428 0.4940375 0.8939555 0.3879929 0.59365404
## 1287 0.738596491  0.482186235 0.4931973 0.8938429 0.3870402 0.59304703
## 180  0.737719298  0.481309042 0.4923599 0.8937301 0.3860900 0.59244127
## 1469 0.736842105  0.480431849 0.4915254 0.8936170 0.3851424 0.59183673
## 172  0.735964912  0.479554656 0.4906937 0.8935037 0.3841975 0.59123344
## 421  0.735087719  0.478677463 0.4898649 0.8933902 0.3832551 0.59063136
## 49   0.734210526  0.477800270 0.4890388 0.8932764 0.3823152 0.59003052
## 106  0.733333333  0.476923077 0.4882155 0.8931624 0.3813779 0.58943089
## 1057 0.732456140  0.476045884 0.4873950 0.8930481 0.3804431 0.58883249
## 579  0.731578947  0.475168691 0.4865772 0.8929336 0.3795108 0.58823529
## 85   0.731578947  0.477732794 0.4874372 0.8938907 0.3813279 0.58966565
## 869  0.730701754  0.476855601 0.4866221 0.8937768 0.3803989 0.58906883
## 22   0.729824561  0.475978408 0.4858097 0.8936627 0.3794724 0.58847321
## 280  0.729824561  0.478542510 0.4866667 0.8946237 0.3812903 0.58989899
## 216  0.728947368  0.477665317 0.4858569 0.8945102 0.3803671 0.58930373
## 807  0.728070175  0.476788124 0.4850498 0.8943966 0.3794464 0.58870968
## 1413 0.727192982  0.475910931 0.4842454 0.8942826 0.3785281 0.58811682
## 1044 0.726315789  0.475033738 0.4834437 0.8941685 0.3776122 0.58752515
## 762  0.726315789  0.477597841 0.4842975 0.8951351 0.3794327 0.58894472
## 1099 0.725438596  0.476720648 0.4834983 0.8950216 0.3785200 0.58835341
## 144  0.724561404  0.475843455 0.4827018 0.8949079 0.3776097 0.58776329
## 300  0.723684211  0.474966262 0.4819079 0.8947939 0.3767018 0.58717435
## 908  0.722807018  0.474089069 0.4811166 0.8946797 0.3757963 0.58658659
## 930  0.721929825  0.473211876 0.4803279 0.8945652 0.3748931 0.58600000
## 681  0.721052632  0.472334683 0.4795417 0.8944505 0.3739922 0.58541459
## 53   0.721052632  0.474898785 0.4803922 0.8954248 0.3758170 0.58682635
## 278  0.720175439  0.474021592 0.4796085 0.8953108 0.3749193 0.58624128
## 1424 0.719298246  0.473144399 0.4788274 0.8951965 0.3740239 0.58565737
## 621  0.718421053  0.472267206 0.4780488 0.8950820 0.3731307 0.58507463
## 183  0.717543860  0.471390013 0.4772727 0.8949672 0.3722399 0.58449304
## 686  0.716666667  0.470512821 0.4764992 0.8948521 0.3713513 0.58391261
## 1150 0.715789474  0.469635628 0.4757282 0.8947368 0.3704650 0.58333333
## 995  0.714912281  0.468758435 0.4749596 0.8946213 0.3695809 0.58275520
## 1029 0.714035088  0.467881242 0.4741935 0.8945055 0.3686990 0.58217822
## 1215 0.714035088  0.470445344 0.4750403 0.8954895 0.3705298 0.58358061
## 797  0.714035088  0.473009447 0.4758842 0.8964758 0.3723600 0.58498024
## 811  0.713157895  0.472132254 0.4751204 0.8963616 0.3714820 0.58440276
## 1364 0.713157895  0.474696356 0.4759615 0.8973510 0.3733125 0.58579882
## 982  0.712280702  0.473819163 0.4752000 0.8972376 0.3724376 0.58522167
## 1169 0.711403509  0.472941970 0.4744409 0.8971239 0.3715648 0.58464567
## 38   0.710526316  0.472064777 0.4736842 0.8970100 0.3706942 0.58407080
## 847  0.710526316  0.474628880 0.4745223 0.8980044 0.3725267 0.58546169
## 275  0.709649123  0.473751687 0.4737679 0.8978912 0.3716591 0.58488714
## 394  0.709649123  0.476315789 0.4746032 0.8988889 0.3734921 0.58627451
## 9    0.708771930  0.475438596 0.4738510 0.8987764 0.3726274 0.58570029
## 470  0.707894737  0.474561404 0.4731013 0.8986637 0.3717650 0.58512720
## 1174 0.707017544  0.473684211 0.4723539 0.8985507 0.3709046 0.58455523
## 274  0.707017544  0.476248313 0.4731861 0.8995536 0.3727397 0.58593750
## 1130 0.707017544  0.478812416 0.4740157 0.9005587 0.3745744 0.58731707
## 1047 0.706140351  0.477935223 0.4732704 0.9004474 0.3737179 0.58674464
## 166  0.705263158  0.477058030 0.4725275 0.9003359 0.3728634 0.58617332
## 630  0.704385965  0.476180837 0.4717868 0.9002242 0.3720110 0.58560311
## 514  0.704385965  0.478744939 0.4726135 0.9012346 0.3738480 0.58697765
## 1526 0.704385965  0.481309042 0.4734375 0.9022472 0.3756847 0.58834951
## 803  0.703508772  0.480431849 0.4726989 0.9021372 0.3748361 0.58777886
## 1499 0.702631579  0.479554656 0.4719626 0.9020270 0.3739896 0.58720930
## 557  0.701754386  0.478677463 0.4712286 0.9019166 0.3731452 0.58664085
## 419  0.700877193  0.477800270 0.4704969 0.9018059 0.3723028 0.58607350
## 41   0.700877193  0.480364372 0.4713178 0.9028249 0.3741427 0.58743961
## 220  0.700877193  0.482928475 0.4721362 0.9038462 0.3759824 0.58880309
## 1170 0.700000000  0.482051282 0.4714065 0.9037373 0.3751438 0.58823529
## 373  0.699122807  0.481174089 0.4706790 0.9036281 0.3743071 0.58766859
## 578  0.698245614  0.480296896 0.4699538 0.9035187 0.3734725 0.58710298
## 303  0.697368421  0.479419703 0.4692308 0.9034091 0.3726399 0.58653846
## 659  0.696491228  0.478542510 0.4685100 0.9032992 0.3718092 0.58597502
## 221  0.695614035  0.477665317 0.4677914 0.9031891 0.3709805 0.58541267
## 336  0.694736842  0.476788124 0.4670750 0.9030787 0.3701537 0.58485139
## 436  0.693859649  0.475910931 0.4663609 0.9029680 0.3693289 0.58429119
## 334  0.692982456  0.475033738 0.4656489 0.9028571 0.3685060 0.58373206
## 422  0.692105263  0.474156545 0.4649390 0.9027460 0.3676850 0.58317400
## 1069 0.691228070  0.473279352 0.4642314 0.9026346 0.3668659 0.58261700
## 230  0.690350877  0.472402159 0.4635258 0.9025229 0.3660488 0.58206107
## 922  0.689473684  0.471524966 0.4628225 0.9024110 0.3652335 0.58150620
## 57   0.689473684  0.474089069 0.4636364 0.9034483 0.3670846 0.58285714
## 187  0.688596491  0.473211876 0.4629349 0.9033372 0.3662721 0.58230257
## 1132 0.688596491  0.475775978 0.4637462 0.9043779 0.3681241 0.58365019
## 992  0.687719298  0.474898785 0.4630468 0.9042676 0.3673143 0.58309592
## 1359 0.686842105  0.474021592 0.4623494 0.9041570 0.3665064 0.58254269
## 415  0.685964912  0.473144399 0.4616541 0.9040462 0.3657004 0.58199052
## 817  0.685087719  0.472267206 0.4609610 0.9039352 0.3648961 0.58143939
## 605  0.685087719  0.474831309 0.4617691 0.9049826 0.3667517 0.58278146
## 966  0.685087719  0.477395412 0.4625749 0.9060325 0.3686073 0.58412098
## 359  0.684210526  0.476518219 0.4618834 0.9059233 0.3678068 0.58356941
## 742  0.683333333  0.475641026 0.4611940 0.9058140 0.3670080 0.58301887
## 181  0.682456140  0.474763833 0.4605067 0.9057043 0.3662110 0.58246937
## 1211 0.682456140  0.477327935 0.4613095 0.9067599 0.3680694 0.58380414
## 453  0.681578947  0.476450742 0.4606241 0.9066511 0.3672752 0.58325494
## 1316 0.680701754  0.475573549 0.4599407 0.9065421 0.3664827 0.58270677
## 790  0.679824561  0.474696356 0.4592593 0.9064327 0.3656920 0.58215962
## 404  0.679824561  0.477260459 0.4600592 0.9074941 0.3675533 0.58348968
## 360  0.678947368  0.476383266 0.4593796 0.9073857 0.3667653 0.58294283
## 226  0.678070175  0.475506073 0.4587021 0.9072770 0.3659791 0.58239700
## 570  0.677192982  0.474628880 0.4580265 0.9071680 0.3651945 0.58185220
## 1401 0.676315789  0.473751687 0.4573529 0.9070588 0.3644118 0.58130841
## 708  0.675438596  0.472874494 0.4566814 0.9069494 0.3636307 0.58076564
## 1290 0.674561404  0.471997301 0.4560117 0.9068396 0.3628514 0.58022388
## 713  0.673684211  0.471120108 0.4553441 0.9067296 0.3620737 0.57968313
## 800  0.672807018  0.470242915 0.4546784 0.9066194 0.3612977 0.57914339
## 1454 0.672807018  0.472807018 0.4554745 0.9076923 0.3631668 0.58046512
## 1015 0.671929825  0.471929825 0.4548105 0.9075829 0.3623934 0.57992565
## 217  0.671052632  0.471052632 0.4541485 0.9074733 0.3616218 0.57938719
## 1280 0.670175439  0.470175439 0.4534884 0.9073634 0.3608518 0.57884972
## 896  0.669298246  0.469298246 0.4528302 0.9072533 0.3600835 0.57831325
## 1184 0.668421053  0.468421053 0.4521739 0.9071429 0.3593168 0.57777778
## 916  0.667543860  0.467543860 0.4515195 0.9070322 0.3585517 0.57724329
## 1297 0.666666667  0.466666667 0.4508671 0.9069212 0.3577883 0.57670980
## 1362 0.665789474  0.465789474 0.4502165 0.9068100 0.3570265 0.57617729
## 282  0.665789474  0.468353576 0.4510086 0.9078947 0.3589034 0.57749077
## 994  0.664912281  0.467476383 0.4503597 0.9077844 0.3581441 0.57695853
## 711  0.664035088  0.466599190 0.4497126 0.9076739 0.3573865 0.57642726
## 21   0.663157895  0.465721997 0.4490674 0.9075630 0.3566305 0.57589696
## 1068 0.662280702  0.464844804 0.4484241 0.9074519 0.3558760 0.57536765
## 1467 0.661403509  0.463967611 0.4477825 0.9073406 0.3551231 0.57483930
## 1252 0.661403509  0.466531714 0.4485714 0.9084337 0.3570052 0.57614679
## 945  0.660526316  0.465654521 0.4479315 0.9083233 0.3562548 0.57561870
## 1273 0.659649123  0.464777328 0.4472934 0.9082126 0.3555060 0.57509158
## 200  0.658771930  0.463900135 0.4466572 0.9081016 0.3547588 0.57456542
## 492  0.657894737  0.463022942 0.4460227 0.9079903 0.3540130 0.57404022
## 1409 0.657017544  0.462145749 0.4453901 0.9078788 0.3532689 0.57351598
## 617  0.656140351  0.461268556 0.4447592 0.9077670 0.3525262 0.57299270
## 151  0.655263158  0.460391363 0.4441301 0.9076549 0.3517850 0.57247037
## 698  0.654385965  0.459514170 0.4435028 0.9075426 0.3510454 0.57194900
## 941  0.653508772  0.458636977 0.4428773 0.9074300 0.3503073 0.57142857
## 548  0.652631579  0.457759784 0.4422535 0.9073171 0.3495706 0.57090909
## 1269 0.651754386  0.456882591 0.4416315 0.9072039 0.3488354 0.57039055
## 486  0.650877193  0.456005398 0.4410112 0.9070905 0.3481017 0.56987296
## 98   0.650877193  0.458569501 0.4417952 0.9082007 0.3499960 0.57116954
## 1123 0.650877193  0.461133603 0.4425770 0.9093137 0.3518908 0.57246377
## 93   0.650000000  0.460256410 0.4419580 0.9092025 0.3511605 0.57194570
## 1388 0.649122807  0.459379217 0.4413408 0.9090909 0.3504317 0.57142857
## 527  0.648245614  0.458502024 0.4407252 0.9089791 0.3497043 0.57091238
## 1095 0.647368421  0.457624831 0.4401114 0.9088670 0.3489784 0.57039711
## 1160 0.646491228  0.456747638 0.4394993 0.9087546 0.3482539 0.56988278
## 584  0.645614035  0.455870445 0.4388889 0.9086420 0.3475309 0.56936937
## 159  0.645614035  0.458434548 0.4396671 0.9097651 0.3494323 0.57065707
## 305  0.644736842  0.457557355 0.4390582 0.9096535 0.3487116 0.57014388
## 330  0.643859649  0.456680162 0.4384509 0.9095415 0.3479924 0.56963163
## 316  0.642982456  0.455802969 0.4378453 0.9094293 0.3472746 0.56912029
## 471  0.642105263  0.454925776 0.4372414 0.9093168 0.3465581 0.56860987
## 1001 0.642105263  0.457489879 0.4380165 0.9104478 0.3484643 0.56989247
## 533  0.641228070  0.456612686 0.4374140 0.9103362 0.3477503 0.56938227
## 1163 0.641228070  0.459176788 0.4381868 0.9114713 0.3496581 0.57066190
## 1464 0.640350877  0.458299595 0.4375857 0.9113608 0.3489465 0.57015192
## 197  0.639473684  0.457422402 0.4369863 0.9112500 0.3482363 0.56964286
## 802  0.638596491  0.456545209 0.4363885 0.9111389 0.3475274 0.56913470
## 1438 0.637719298  0.455668016 0.4357923 0.9110276 0.3468199 0.56862745
## 464  0.636842105  0.454790823 0.4351978 0.9109159 0.3461138 0.56812110
## 1490 0.635964912  0.453913630 0.4346049 0.9108040 0.3454089 0.56761566
## 10   0.635087719  0.453036437 0.4340136 0.9106918 0.3447054 0.56711111
## 728  0.634210526  0.452159244 0.4334239 0.9105793 0.3440033 0.56660746
## 1423 0.633333333  0.451282051 0.4328358 0.9104666 0.3433024 0.56610470
## 1240 0.632456140  0.450404858 0.4322493 0.9103535 0.3426029 0.56560284
## 556  0.631578947  0.449527665 0.4316644 0.9102402 0.3419046 0.56510186
## 270  0.630701754  0.448650472 0.4310811 0.9101266 0.3412077 0.56460177
## 1323 0.629824561  0.447773279 0.4304993 0.9100127 0.3405120 0.56410256
## 841  0.629824561  0.450337382 0.4312668 0.9111675 0.3424344 0.56537102
## 1232 0.628947368  0.449460189 0.4306864 0.9110546 0.3417410 0.56487202
## 564  0.628070175  0.448582996 0.4301075 0.9109415 0.3410490 0.56437390
## 20   0.627192982  0.447705803 0.4295302 0.9108280 0.3403582 0.56387665
## 644  0.627192982  0.450269906 0.4302949 0.9119898 0.3422847 0.56514085
## 1284 0.627192982  0.452834008 0.4310576 0.9131545 0.3442121 0.56640281
## 157  0.627192982  0.455398111 0.4318182 0.9143223 0.3461404 0.56766257
## 1408 0.626315789  0.454520918 0.4312417 0.9142125 0.3454542 0.56716418
## 457  0.625438596  0.453643725 0.4306667 0.9141026 0.3447692 0.56666667
## 910  0.624561404  0.452766532 0.4300932 0.9139923 0.3440855 0.56617003
## 154  0.624561404  0.455330634 0.4308511 0.9151671 0.3460182 0.56742557
## 1124 0.624561404  0.457894737 0.4316069 0.9163449 0.3479518 0.56867892
## 699  0.623684211  0.457017544 0.4310345 0.9162371 0.3472716 0.56818182
## 13   0.623684211  0.459581646 0.4317881 0.9174194 0.3492074 0.56943231
## 129  0.622807018  0.458704453 0.4312169 0.9173127 0.3485296 0.56893543
## 1282 0.621929825  0.457827260 0.4306473 0.9172057 0.3478530 0.56843941
## 873  0.621052632  0.456950067 0.4300792 0.9170984 0.3471776 0.56794425
## 96   0.619298246  0.455195682 0.4289474 0.9168831 0.3458305 0.56695652
## 974  0.619298246  0.455195682 0.4289474 0.9168831 0.3458305 0.56695652
## 384  0.618421053  0.454318489 0.4283837 0.9167750 0.3451587 0.56646394
## 1515 0.617543860  0.453441296 0.4278215 0.9166667 0.3444882 0.56597222
## 1379 0.616666667  0.452564103 0.4272608 0.9165580 0.3438188 0.56548135
## 939  0.615789474  0.451686910 0.4267016 0.9164491 0.3431507 0.56499133
## 292  0.614912281  0.450809717 0.4261438 0.9163399 0.3424837 0.56450216
## 1114 0.614035088  0.449932524 0.4255875 0.9162304 0.3418178 0.56401384
## 805  0.613157895  0.449055331 0.4250326 0.9161206 0.3411532 0.56352636
## 815  0.612280702  0.448178138 0.4244792 0.9160105 0.3404897 0.56303972
## 51   0.611403509  0.447300945 0.4239272 0.9159001 0.3398273 0.56255393
## 1440 0.610526316  0.446423752 0.4233766 0.9157895 0.3391661 0.56206897
## 1179 0.609649123  0.445546559 0.4228275 0.9156785 0.3385060 0.56158484
## 88   0.609649123  0.448110661 0.4235751 0.9168865 0.3404617 0.56282272
## 1394 0.608771930  0.447233468 0.4230272 0.9167768 0.3398039 0.56233878
## 63   0.608771930  0.449797571 0.4237726 0.9179894 0.3417620 0.56357388
## 186  0.607894737  0.448920378 0.4232258 0.9178808 0.3411066 0.56309013
## 1080 0.607017544  0.448043185 0.4226804 0.9177719 0.3404523 0.56260720
## 554  0.607017544  0.450607287 0.4234234 0.9189907 0.3424141 0.56383890
## 369  0.606140351  0.449730094 0.4228792 0.9188830 0.3417622 0.56335616
## 696  0.605263158  0.448852901 0.4223363 0.9187750 0.3411113 0.56287425
## 310  0.604385965  0.447975709 0.4217949 0.9186667 0.3404615 0.56239316
## 781  0.603508772  0.447098516 0.4212548 0.9185581 0.3398129 0.56191289
## 297  0.602631579  0.446221323 0.4207161 0.9184492 0.3391653 0.56143345
## 522  0.602631579  0.448785425 0.4214559 0.9196787 0.3411347 0.56265985
## 1139 0.601754386  0.447908232 0.4209184 0.9195710 0.3404894 0.56218058
## 902  0.600877193  0.447031039 0.4203822 0.9194631 0.3398453 0.56170213
## 1403 0.600000000  0.446153846 0.4198473 0.9193548 0.3392022 0.56122449
## 585  0.599122807  0.445276653 0.4193139 0.9192463 0.3385601 0.56074766
## 957  0.598245614  0.444399460 0.4187817 0.9191375 0.3379192 0.56027165
## 935  0.597368421  0.443522267 0.4182510 0.9190283 0.3372793 0.55979644
## 576  0.596491228  0.442645074 0.4177215 0.9189189 0.3366404 0.55932203
## 58   0.595614035  0.441767881 0.4171934 0.9188092 0.3360026 0.55884843
## 1078 0.594736842  0.440890688 0.4166667 0.9186992 0.3353659 0.55837563
## 59   0.594736842  0.443454791 0.4174023 0.9199457 0.3373480 0.55959425
## 320  0.593859649  0.442577598 0.4168766 0.9198370 0.3367135 0.55912162
## 872  0.592982456  0.441700405 0.4163522 0.9197279 0.3360801 0.55864979
## 299  0.592105263  0.440823212 0.4158291 0.9196185 0.3354477 0.55817875
## 539  0.591228070  0.439946019 0.4153074 0.9195089 0.3348163 0.55770851
## 1304 0.590350877  0.439068826 0.4147870 0.9193989 0.3341859 0.55723906
## 1070 0.589473684  0.438191633 0.4142678 0.9192886 0.3335565 0.55677040
## 751  0.588596491  0.437314440 0.4137500 0.9191781 0.3329281 0.55630252
## 1387 0.587719298  0.436437247 0.4132335 0.9190672 0.3323007 0.55583543
## 1149 0.586842105  0.435560054 0.4127182 0.9189560 0.3316742 0.55536913
## 185  0.585964912  0.434682861 0.4122042 0.9188446 0.3310488 0.55490360
## 1197 0.585087719  0.433805668 0.4116915 0.9187328 0.3304243 0.55443886
## 1295 0.584210526  0.432928475 0.4111801 0.9186207 0.3298008 0.55397490
## 891  0.583333333  0.432051282 0.4106700 0.9185083 0.3291783 0.55351171
## 364  0.582456140  0.431174089 0.4101611 0.9183956 0.3285567 0.55304929
## 757  0.582456140  0.433738192 0.4108911 0.9196676 0.3305587 0.55425710
## 851  0.581578947  0.432860999 0.4103832 0.9195562 0.3299394 0.55379483
## 81   0.580701754  0.431983806 0.4098765 0.9194444 0.3293210 0.55333333
## 1046 0.579824561  0.431106613 0.4093711 0.9193324 0.3287036 0.55287261
## 208  0.579824561  0.433670715 0.4100985 0.9206128 0.3307113 0.55407654
## 478  0.579824561  0.436234818 0.4108241 0.9218968 0.3327209 0.55527847
## 1317 0.578947368  0.435357625 0.4103194 0.9217877 0.3321071 0.55481728
## 1058 0.578070175  0.434480432 0.4098160 0.9216783 0.3314943 0.55435685
## 542  0.577192982  0.433603239 0.4093137 0.9215686 0.3308824 0.55389718
## 493  0.576315789  0.432726046 0.4088127 0.9214586 0.3302714 0.55343828
## 1456 0.576315789  0.435290148 0.4095355 0.9227528 0.3322883 0.55463576
## 970  0.576315789  0.437854251 0.4102564 0.9240506 0.3343070 0.55583127
## 418  0.575438596  0.436977058 0.4097561 0.9239437 0.3336998 0.55537190
## 560  0.574561404  0.436099865 0.4092570 0.9238364 0.3330934 0.55491329
## 525  0.573684211  0.435222672 0.4087591 0.9237288 0.3324879 0.55445545
## 895  0.572807018  0.434345479 0.4082625 0.9236209 0.3318834 0.55399835
## 899  0.571929825  0.433468286 0.4077670 0.9235127 0.3312797 0.55354201
## 595  0.571929825  0.436032389 0.4084848 0.9248227 0.3333075 0.55473251
## 124  0.571052632  0.435155196 0.4079903 0.9247159 0.3327062 0.55427632
## 127  0.570175439  0.434278003 0.4074970 0.9246088 0.3321058 0.55382087
## 1354 0.569298246  0.433400810 0.4070048 0.9245014 0.3315063 0.55336617
## 1348 0.568421053  0.432523617 0.4065139 0.9243937 0.3309076 0.55291222
## 632  0.567543860  0.431646424 0.4060241 0.9242857 0.3303098 0.55245902
## 827  0.566666667  0.430769231 0.4055355 0.9241774 0.3297129 0.55200655
## 15   0.565789474  0.429892038 0.4050481 0.9240688 0.3291168 0.55155483
## 344  0.564912281  0.429014845 0.4045618 0.9239598 0.3285217 0.55110384
## 50   0.564035088  0.428137652 0.4040767 0.9238506 0.3279273 0.55065359
## 779  0.563157895  0.427260459 0.4035928 0.9237410 0.3273338 0.55020408
## 202  0.562280702  0.426383266 0.4031100 0.9236311 0.3267412 0.54975530
## 633  0.561403509  0.425506073 0.4026284 0.9235209 0.3261494 0.54930725
## 1159 0.560526316  0.424628880 0.4021480 0.9234104 0.3255584 0.54885993
## 1039 0.559649123  0.423751687 0.4016687 0.9232996 0.3249682 0.54841334
## 1404 0.558771930  0.422874494 0.4011905 0.9231884 0.3243789 0.54796748
## 905  0.557894737  0.421997301 0.4007134 0.9230769 0.3237904 0.54752234
## 1146 0.557017544  0.421120108 0.4002375 0.9229651 0.3232026 0.54707792
## 459  0.556140351  0.420242915 0.3997628 0.9228530 0.3226157 0.54663423
## 52   0.556140351  0.422807018 0.4004739 0.9241983 0.3246722 0.54781199
## 1256 0.555263158  0.421929825 0.4000000 0.9240876 0.3240876 0.54736842
## 248  0.554385965  0.421052632 0.3995272 0.9239766 0.3235038 0.54692557
## 732  0.553508772  0.420175439 0.3990555 0.9238653 0.3229208 0.54648343
## 669  0.552631579  0.419298246 0.3985849 0.9237537 0.3223386 0.54604200
## 959  0.552631579  0.421862348 0.3992933 0.9251101 0.3244034 0.54721550
## 1261 0.551754386  0.420985155 0.3988235 0.9250000 0.3238235 0.54677419
## 365  0.550877193  0.420107962 0.3983549 0.9248895 0.3232444 0.54633360
## 688  0.550000000  0.419230769 0.3978873 0.9247788 0.3226661 0.54589372
## 880  0.550000000  0.421794872 0.3985932 0.9261448 0.3247380 0.54706356
## 824  0.549122807  0.420917679 0.3981265 0.9260355 0.3241620 0.54662379
## 490  0.548245614  0.420040486 0.3976608 0.9259259 0.3235867 0.54618474
## 314  0.548245614  0.422604588 0.3983645 0.9272997 0.3256642 0.54735152
## 97   0.548245614  0.425168691 0.3990665 0.9286776 0.3277441 0.54851644
## 573  0.547368421  0.424291498 0.3986014 0.9285714 0.3271728 0.54807692
## 173  0.546491228  0.423414305 0.3981374 0.9284650 0.3266023 0.54763811
## 389  0.545614035  0.422537112 0.3976744 0.9283582 0.3260326 0.54720000
## 134  0.544736842  0.421659919 0.3972125 0.9282511 0.3254637 0.54676259
## 1156 0.543859649  0.420782726 0.3967517 0.9281437 0.3248955 0.54632588
## 1218 0.542982456  0.419905533 0.3962920 0.9280360 0.3243280 0.54588986
## 786  0.542105263  0.419028340 0.3958333 0.9279279 0.3237613 0.54545455
## 1411 0.541228070  0.418151147 0.3953757 0.9278195 0.3231953 0.54501992
## 137  0.540350877  0.417273954 0.3949192 0.9277108 0.3226300 0.54458599
## 284  0.539473684  0.416396761 0.3944637 0.9276018 0.3220655 0.54415274
## 388  0.538596491  0.415519568 0.3940092 0.9274924 0.3215017 0.54372019
## 1193 0.537719298  0.414642375 0.3935558 0.9273828 0.3209386 0.54328832
## 162  0.536842105  0.413765182 0.3931034 0.9272727 0.3203762 0.54285714
## 673  0.535964912  0.412887989 0.3926521 0.9271624 0.3198145 0.54242665
## 1421 0.535087719  0.412010796 0.3922018 0.9270517 0.3192535 0.54199683
## 926  0.534210526  0.411133603 0.3917526 0.9269406 0.3186932 0.54156770
## 1148 0.533333333  0.410256410 0.3913043 0.9268293 0.3181336 0.54113924
## 778  0.532456140  0.409379217 0.3908571 0.9267176 0.3175747 0.54071146
## 309  0.531578947  0.408502024 0.3904110 0.9266055 0.3170165 0.54028436
## 1369 0.531578947  0.411066127 0.3911060 0.9280245 0.3191305 0.54143646
## 626  0.530701754  0.410188934 0.3906606 0.9279141 0.3185747 0.54100946
## 472  0.529824561  0.409311741 0.3902162 0.9278034 0.3180195 0.54058314
## 569  0.528947368  0.408434548 0.3897727 0.9276923 0.3174650 0.54015748
## 658  0.528070175  0.407557355 0.3893303 0.9275809 0.3169112 0.53973249
## 343  0.527192982  0.406680162 0.3888889 0.9274691 0.3163580 0.53930818
## 706  0.526315789  0.405802969 0.3884485 0.9273570 0.3158055 0.53888452
## 1259 0.525438596  0.404925776 0.3880090 0.9272446 0.3152536 0.53846154
## 1108 0.524561404  0.404048583 0.3875706 0.9271318 0.3147024 0.53803922
## 914  0.523684211  0.403171390 0.3871332 0.9270186 0.3141518 0.53761755
## 36   0.523684211  0.405735493 0.3878241 0.9284603 0.3162845 0.53876273
## 1340 0.522807018  0.404858300 0.3873874 0.9283489 0.3157363 0.53834116
## 426  0.521929825  0.403981107 0.3869516 0.9282371 0.3151888 0.53792025
## 501  0.521052632  0.403103914 0.3865169 0.9281250 0.3146419 0.53750000
## 1430 0.520175439  0.402226721 0.3860831 0.9280125 0.3140956 0.53708041
## 155  0.519298246  0.401349528 0.3856502 0.9278997 0.3135499 0.53666147
## 264  0.518421053  0.400472335 0.3852184 0.9277865 0.3130049 0.53624318
## 441  0.517543860  0.399595142 0.3847875 0.9276730 0.3124604 0.53582555
## 565  0.516666667  0.398717949 0.3843575 0.9275591 0.3119166 0.53540856
## 209  0.516666667  0.401282051 0.3850446 0.9290221 0.3140667 0.53654743
## 623  0.515789474  0.400404858 0.3846154 0.9289100 0.3135253 0.53613054
## 687  0.514912281  0.399527665 0.3841871 0.9287975 0.3129846 0.53571429
## 255  0.514035088  0.398650472 0.3837597 0.9286846 0.3124444 0.53529868
## 1293 0.513157895  0.397773279 0.3833333 0.9285714 0.3119048 0.53488372
## 925  0.512280702  0.396896086 0.3829079 0.9284579 0.3113657 0.53446940
## 980  0.511403509  0.396018893 0.3824834 0.9283439 0.3108273 0.53405573
## 1477 0.510526316  0.395141700 0.3820598 0.9282297 0.3102895 0.53364269
## 188  0.510526316  0.397705803 0.3827434 0.9297125 0.3124558 0.53477589
## 481  0.510526316  0.400269906 0.3834254 0.9312000 0.3146254 0.53590734
## 158  0.509649123  0.399392713 0.3830022 0.9310897 0.3140920 0.53549383
## 469  0.508771930  0.398515520 0.3825799 0.9309791 0.3135591 0.53508096
## 1495 0.507894737  0.397638327 0.3821586 0.9308682 0.3130268 0.53466872
## 1135 0.507017544  0.396761134 0.3817382 0.9307568 0.3124950 0.53425712
## 12   0.507017544  0.399325236 0.3824176 0.9322581 0.3146756 0.53538462
## 806  0.506140351  0.398448043 0.3819978 0.9321486 0.3141464 0.53497310
## 535  0.505263158  0.397570850 0.3815789 0.9320388 0.3136178 0.53456221
## 130  0.505263158  0.400134953 0.3822563 0.9335494 0.3158057 0.53568688
## 1309 0.504385965  0.399257760 0.3818381 0.9334416 0.3152796 0.53527607
## 261  0.504385965  0.401821862 0.3825137 0.9349593 0.3174730 0.53639847
## 381  0.503508772  0.400944669 0.3820961 0.9348534 0.3169495 0.53598775
## 446  0.502631579  0.400067476 0.3816794 0.9347471 0.3164265 0.53557766
## 1393 0.501754386  0.399190283 0.3812636 0.9346405 0.3159041 0.53516820
## 448  0.500877193  0.398313090 0.3808487 0.9345336 0.3153823 0.53475936
## 513  0.500877193  0.400877193 0.3815217 0.9360656 0.3175873 0.53587786
## 1023 0.500000000  0.400000000 0.3811075 0.9359606 0.3170681 0.53546911
## 1000 0.500000000  0.402564103 0.3817787 0.9375000 0.3192787 0.53658537
## 417  0.499122807  0.401686910 0.3813651 0.9373970 0.3187621 0.53617669
## 367  0.498245614  0.400809717 0.3809524 0.9372937 0.3182461 0.53576865
## 460  0.497368421  0.399932524 0.3805405 0.9371901 0.3177306 0.53536122
## 1166 0.496491228  0.399055331 0.3801296 0.9370861 0.3172157 0.53495441
## 64   0.495614035  0.398178138 0.3797195 0.9369818 0.3167013 0.53454822
## 948  0.494736842  0.397300945 0.3793103 0.9368771 0.3161874 0.53414264
## 631  0.493859649  0.396423752 0.3789020 0.9367720 0.3156741 0.53373768
## 103  0.492982456  0.395546559 0.3784946 0.9366667 0.3151613 0.53333333
## 611  0.492105263  0.394669366 0.3780881 0.9365609 0.3146490 0.53292960
## 1518 0.491228070  0.393792173 0.3776824 0.9364548 0.3141373 0.53252648
## 1376 0.491228070  0.396356275 0.3783494 0.9380235 0.3163729 0.53363568
## 936  0.490350877  0.395479082 0.3779443 0.9379195 0.3158638 0.53323263
## 1441 0.489473684  0.394601889 0.3775401 0.9378151 0.3153552 0.53283019
## 739  0.488596491  0.393724696 0.3771368 0.9377104 0.3148472 0.53242836
## 1516 0.487719298  0.392847503 0.3767343 0.9376054 0.3143397 0.53202713
## 1392 0.486842105  0.391970310 0.3763326 0.9375000 0.3138326 0.53162651
## 1363 0.485964912  0.391093117 0.3759318 0.9373942 0.3133261 0.53122649
## 1267 0.485087719  0.390215924 0.3755319 0.9372881 0.3128201 0.53082707
## 1086 0.485087719  0.392780027 0.3761955 0.9388795 0.3150750 0.53193088
## 379  0.484210526  0.391902834 0.3757962 0.9387755 0.3145717 0.53153153
## 889  0.484210526  0.394466937 0.3764581 0.9403748 0.3168329 0.53263316
## 28   0.483333333  0.393589744 0.3760593 0.9402730 0.3163324 0.53223388
## 1188 0.482456140  0.392712551 0.3756614 0.9401709 0.3158323 0.53183521
## 372  0.481578947  0.391835358 0.3752643 0.9400685 0.3153328 0.53143713
## 206  0.480701754  0.390958165 0.3748680 0.9399657 0.3148337 0.53103964
## 260  0.479824561  0.390080972 0.3744726 0.9398625 0.3143351 0.53064275
## 668  0.478947368  0.389203779 0.3740780 0.9397590 0.3138370 0.53024645
## 1028 0.478070175  0.388326586 0.3736842 0.9396552 0.3133394 0.52985075
## 620  0.477192982  0.387449393 0.3732913 0.9395509 0.3128422 0.52945563
## 1491 0.476315789  0.386572200 0.3728992 0.9394464 0.3123455 0.52906110
## 341  0.475438596  0.385695007 0.3725079 0.9393414 0.3118493 0.52866716
## 253  0.474561404  0.384817814 0.3721174 0.9392361 0.3113535 0.52827381
## 615  0.473684211  0.383940621 0.3717277 0.9391304 0.3108582 0.52788104
## 1002 0.473684211  0.386504723 0.3723849 0.9407666 0.3131515 0.52897474
## 287  0.472807018  0.385627530 0.3719958 0.9406632 0.3126590 0.52858203
## 641  0.472807018  0.388191633 0.3726514 0.9423077 0.3149590 0.52967359
## 563  0.471929825  0.387314440 0.3722628 0.9422067 0.3144694 0.52928095
## 783  0.471052632  0.386437247 0.3718750 0.9421053 0.3139803 0.52888889
## 1134 0.471052632  0.389001350 0.3725286 0.9437610 0.3162896 0.52997779
## 489  0.470175439  0.388124157 0.3721414 0.9436620 0.3158033 0.52958580
## 1    0.469298246  0.387246964 0.3717549 0.9435626 0.3153175 0.52919438
## 1377 0.468421053  0.386369771 0.3713693 0.9434629 0.3148322 0.52880355
## 1255 0.468421053  0.388933873 0.3720207 0.9451327 0.3171535 0.52988930
## 431  0.467543860  0.388056680 0.3716356 0.9450355 0.3166711 0.52949853
## 194  0.466666667  0.387179487 0.3712513 0.9449378 0.3161891 0.52910833
## 1158 0.465789474  0.386302294 0.3708678 0.9448399 0.3157076 0.52871870
## 86   0.464912281  0.385425101 0.3704850 0.9447415 0.3152266 0.52832965
## 370  0.464035088  0.384547908 0.3701031 0.9446429 0.3147459 0.52794118
## 375  0.463157895  0.383670715 0.3697219 0.9445438 0.3142658 0.52755327
## 177  0.462280702  0.382793522 0.3693416 0.9444444 0.3137860 0.52716593
## 1406 0.461403509  0.381916329 0.3689620 0.9443447 0.3133067 0.52677916
## 498  0.460526316  0.381039136 0.3685832 0.9442446 0.3128278 0.52639296
## 1435 0.459649123  0.380161943 0.3682051 0.9441441 0.3123493 0.52600733
## 70   0.458771930  0.379284750 0.3678279 0.9440433 0.3118712 0.52562225
## 67   0.457894737  0.378407557 0.3674514 0.9439421 0.3113935 0.52523775
## 928  0.457017544  0.377530364 0.3670757 0.9438406 0.3109162 0.52485380
## 269  0.456140351  0.376653171 0.3667007 0.9437387 0.3104394 0.52447042
## 315  0.455263158  0.375775978 0.3663265 0.9436364 0.3099629 0.52408759
## 984  0.454385965  0.374898785 0.3659531 0.9435337 0.3094868 0.52370532
## 198  0.454385965  0.377462888 0.3665988 0.9452555 0.3118543 0.52478134
## 1281 0.453508772  0.376585695 0.3662258 0.9451554 0.3113812 0.52439913
## 568  0.452631579  0.375708502 0.3658537 0.9450549 0.3109086 0.52401747
## 236  0.451754386  0.374831309 0.3654822 0.9449541 0.3104364 0.52363636
## 829  0.450877193  0.373954116 0.3651116 0.9448529 0.3099645 0.52325581
## 387  0.450000000  0.373076923 0.3647416 0.9447514 0.3094930 0.52287582
## 56   0.449122807  0.372199730 0.3643725 0.9446494 0.3090219 0.52249637
## 965  0.449122807  0.374763833 0.3650152 0.9463956 0.3114107 0.52356780
## 1027 0.448245614  0.373886640 0.3646465 0.9462963 0.3109428 0.52318841
## 1493 0.447368421  0.373009447 0.3642785 0.9461967 0.3104752 0.52280956
## 1319 0.446491228  0.372132254 0.3639113 0.9460967 0.3100079 0.52243126
## 1185 0.445614035  0.371255061 0.3635448 0.9459963 0.3095411 0.52205351
## 818  0.444736842  0.370377868 0.3631791 0.9458955 0.3090746 0.52167630
## 1051 0.443859649  0.369500675 0.3628141 0.9457944 0.3086085 0.52129964
## 537  0.442982456  0.368623482 0.3624498 0.9456929 0.3081427 0.52092352
## 1213 0.442982456  0.371187584 0.3630893 0.9474672 0.3105564 0.52198991
## 1283 0.442982456  0.373751687 0.3637275 0.9492481 0.3129756 0.52305476
## 820  0.442105263  0.372874494 0.3633634 0.9491525 0.3125159 0.52267819
## 1238 0.441228070  0.371997301 0.3630000 0.9490566 0.3120566 0.52230216
## 1419 0.440350877  0.371120108 0.3626374 0.9489603 0.3115977 0.52192667
## 1017 0.439473684  0.370242915 0.3622754 0.9488636 0.3111391 0.52155172
## 356  0.438596491  0.369365722 0.3619143 0.9487666 0.3106809 0.52117732
## 567  0.437719298  0.368488529 0.3615538 0.9486692 0.3102230 0.52080344
## 1308 0.436842105  0.367611336 0.3611940 0.9485714 0.3097655 0.52043011
## 149  0.435964912  0.366734143 0.3608350 0.9484733 0.3093083 0.52005731
## 755  0.435087719  0.365856950 0.3604767 0.9483748 0.3088514 0.51968504
## 629  0.434210526  0.364979757 0.3601190 0.9482759 0.3083949 0.51931330
## 1514 0.433333333  0.364102564 0.3597621 0.9481766 0.3079387 0.51894210
## 214  0.432456140  0.363225371 0.3594059 0.9480769 0.3074829 0.51857143
## 1313 0.431578947  0.362348178 0.3590504 0.9479769 0.3070273 0.51820128
## 1301 0.430701754  0.361470985 0.3586957 0.9478764 0.3065721 0.51783167
## 1302 0.429824561  0.360593792 0.3583416 0.9477756 0.3061172 0.51746258
## 932  0.428947368  0.359716599 0.3579882 0.9476744 0.3056626 0.51709402
## 212  0.428070175  0.358839406 0.3576355 0.9475728 0.3052083 0.51672598
## 1052 0.427192982  0.357962213 0.3572835 0.9474708 0.3047543 0.51635846
## 263  0.426315789  0.357085020 0.3569322 0.9473684 0.3043006 0.51599147
## 71   0.425438596  0.356207827 0.3565815 0.9472656 0.3038472 0.51562500
## 363  0.424561404  0.355330634 0.3562316 0.9471624 0.3033940 0.51525905
## 294  0.423684211  0.354453441 0.3558824 0.9470588 0.3029412 0.51489362
## 906  0.422807018  0.353576248 0.3555338 0.9469548 0.3024886 0.51452870
## 1355 0.421929825  0.352699055 0.3551859 0.9468504 0.3020363 0.51416431
## 937  0.421052632  0.351821862 0.3548387 0.9467456 0.3015843 0.51380042
## 785  0.420175439  0.350944669 0.3544922 0.9466403 0.3011325 0.51343706
## 1227 0.419298246  0.350067476 0.3541463 0.9465347 0.3006810 0.51307420
## 684  0.418421053  0.349190283 0.3538012 0.9464286 0.3002297 0.51271186
## 65   0.417543860  0.348313090 0.3534567 0.9463221 0.2997787 0.51235004
## 740  0.416666667  0.347435897 0.3531128 0.9462151 0.2993280 0.51198872
## 45   0.415789474  0.346558704 0.3527697 0.9461078 0.2988775 0.51162791
## 656  0.414912281  0.345681511 0.3524272 0.9460000 0.2984272 0.51126761
## 599  0.414912281  0.348245614 0.3530553 0.9478958 0.3009511 0.51231527
## 1239 0.414035088  0.347368421 0.3527132 0.9477912 0.3005043 0.51195499
## 864  0.413157895  0.346491228 0.3523717 0.9476861 0.3000578 0.51159522
## 823  0.412280702  0.345614035 0.3520309 0.9475806 0.2996116 0.51123596
## 1500 0.411403509  0.344736842 0.3516908 0.9474747 0.2991656 0.51087719
## 1473 0.410526316  0.343859649 0.3513514 0.9473684 0.2987198 0.51051893
## 33   0.409649123  0.342982456 0.3510125 0.9472617 0.2982742 0.51016118
## 1372 0.409649123  0.345546559 0.3516378 0.9491870 0.3008248 0.51120448
## 1461 0.408771930  0.344669366 0.3512993 0.9490835 0.3003828 0.51084675
## 400  0.408771930  0.347233468 0.3519231 0.9510204 0.3029435 0.51188811
## 1373 0.408771930  0.349797571 0.3525456 0.9529652 0.3055109 0.51292802
## 562  0.407894737  0.348920378 0.3522073 0.9528689 0.3050761 0.51256983
## 242  0.407017544  0.348043185 0.3518696 0.9527721 0.3046417 0.51221214
## 1096 0.406140351  0.347165992 0.3515326 0.9526749 0.3042075 0.51185495
## 898  0.405263158  0.346288799 0.3511962 0.9525773 0.3037735 0.51149826
## 115  0.404385965  0.345411606 0.3508604 0.9524793 0.3033398 0.51114206
## 1055 0.403508772  0.344534413 0.3505253 0.9523810 0.3029063 0.51078636
## 442  0.402631579  0.343657220 0.3501908 0.9522822 0.3024730 0.51043115
## 374  0.401754386  0.342780027 0.3498570 0.9521830 0.3020400 0.51007644
## 1062 0.400877193  0.341902834 0.3495238 0.9520833 0.3016071 0.50972222
## 1176 0.400000000  0.341025641 0.3491912 0.9519833 0.3011745 0.50936849
## 1443 0.399122807  0.340148448 0.3488593 0.9518828 0.3007422 0.50901526
## 1433 0.398245614  0.339271255 0.3485280 0.9517820 0.3003100 0.50866251
## 795  0.397368421  0.338394062 0.3481973 0.9516807 0.2998780 0.50831025
## 870  0.396491228  0.337516869 0.3478673 0.9515789 0.2994462 0.50795848
## 1505 0.395614035  0.336639676 0.3475379 0.9514768 0.2990147 0.50760719
## 857  0.394736842  0.335762483 0.3472091 0.9513742 0.2985833 0.50725639
## 912  0.393859649  0.334885290 0.3468809 0.9512712 0.2981521 0.50690608
## 90   0.392982456  0.334008097 0.3465534 0.9511677 0.2977211 0.50655625
## 1324 0.392105263  0.333130904 0.3462264 0.9510638 0.2972902 0.50620690
## 981  0.391228070  0.332253711 0.3459001 0.9509595 0.2968596 0.50585803
## 1026 0.390350877  0.331376518 0.3455744 0.9508547 0.2964291 0.50550964
## 772  0.389473684  0.330499325 0.3452493 0.9507495 0.2959988 0.50516173
## 1466 0.388596491  0.329622132 0.3449248 0.9506438 0.2955686 0.50481431
## 1487 0.387719298  0.328744939 0.3446009 0.9505376 0.2951386 0.50446735
## 1382 0.386842105  0.327867746 0.3442777 0.9504310 0.2947087 0.50412088
## 1503 0.385964912  0.326990553 0.3439550 0.9503240 0.2942790 0.50377488
## 138  0.385087719  0.326113360 0.3436330 0.9502165 0.2938494 0.50342936
## 410  0.384210526  0.325236167 0.3433115 0.9501085 0.2934200 0.50308430
## 808  0.383333333  0.324358974 0.3429907 0.9500000 0.2929907 0.50273973
## 1307 0.382456140  0.323481781 0.3426704 0.9498911 0.2925615 0.50239562
## 1507 0.381578947  0.322604588 0.3423507 0.9497817 0.2921324 0.50205198
## 879  0.381578947  0.325168691 0.3429637 0.9518600 0.2948236 0.50307587
## 1470 0.380701754  0.324291498 0.3426443 0.9517544 0.2943987 0.50273224
## 540  0.379824561  0.323414305 0.3423256 0.9516484 0.2939739 0.50238908
## 1138 0.378947368  0.322537112 0.3420074 0.9515419 0.2935493 0.50204638
## 1385 0.378070175  0.321659919 0.3416899 0.9514349 0.2931248 0.50170416
## 1460 0.377192982  0.320782726 0.3413729 0.9513274 0.2927003 0.50136240
## 1244 0.377192982  0.323346829 0.3419833 0.9534368 0.2954201 0.50238257
## 164  0.377192982  0.325910931 0.3425926 0.9555556 0.2981481 0.50340136
## 1299 0.376315789  0.325033738 0.3422757 0.9554566 0.2977322 0.50305914
## 1142 0.375438596  0.324156545 0.3419593 0.9553571 0.2973165 0.50271739
## 1168 0.374561404  0.323279352 0.3416436 0.9552573 0.2969009 0.50237610
## 826  0.373684211  0.322402159 0.3413284 0.9551570 0.2964854 0.50203528
## 697  0.372807018  0.321524966 0.3410138 0.9550562 0.2960700 0.50169492
## 612  0.371929825  0.320647773 0.3406998 0.9549550 0.2956548 0.50135501
## 1224 0.371052632  0.319770580 0.3403864 0.9548533 0.2952397 0.50101557
## 1471 0.370175439  0.318893387 0.3400735 0.9547511 0.2948247 0.50067659
## 955  0.369298246  0.318016194 0.3397612 0.9546485 0.2944098 0.50033807
## 716  0.369298246  0.320580297 0.3403670 0.9568182 0.2971852 0.50135135
## 536  0.368421053  0.319703104 0.3400550 0.9567198 0.2967748 0.50101283
## 447  0.367543860  0.318825911 0.3397436 0.9566210 0.2963646 0.50067476
## 1145 0.366666667  0.317948718 0.3394328 0.9565217 0.2959545 0.50033715
## 1187 0.365789474  0.317071525 0.3391225 0.9564220 0.2955445 0.50000000
## 383  0.364912281  0.316194332 0.3388128 0.9563218 0.2951346 0.49966330
## 844  0.364912281  0.318758435 0.3394161 0.9585253 0.2979414 0.50067295
## 1344 0.364035088  0.317881242 0.3391067 0.9584296 0.2975362 0.50033625
## 1305 0.363157895  0.317004049 0.3387978 0.9583333 0.2971311 0.50000000
## 1326 0.363157895  0.319568151 0.3393995 0.9605568 0.2999563 0.50100739
## 581  0.362280702  0.318690958 0.3390909 0.9604651 0.2995560 0.50067114
## 1257 0.361403509  0.317813765 0.3387829 0.9603730 0.2991559 0.50033535
## 105  0.360526316  0.316936572 0.3384755 0.9602804 0.2987559 0.50000000
## 416  0.359649123  0.316059379 0.3381686 0.9601874 0.2983560 0.49966510
## 551  0.358771930  0.315182186 0.3378623 0.9600939 0.2979562 0.49933066
## 286  0.357894737  0.314304993 0.3375566 0.9600000 0.2975566 0.49899666
## 1209 0.357894737  0.316869096 0.3381555 0.9622642 0.3004197 0.50000000
## 213  0.357017544  0.315991903 0.3378500 0.9621749 0.3000250 0.49966600
## 875  0.356140351  0.315114710 0.3375451 0.9620853 0.2996304 0.49933244
## 466  0.355263158  0.314237517 0.3372408 0.9619952 0.2992360 0.49899933
## 1386 0.354385965  0.313360324 0.3369369 0.9619048 0.2988417 0.49866667
## 461  0.353508772  0.312483131 0.3366337 0.9618138 0.2984475 0.49833444
## 337  0.352631579  0.311605938 0.3363309 0.9617225 0.2980534 0.49800266
## 1341 0.351754386  0.310728745 0.3360288 0.9616307 0.2976594 0.49767132
## 1497 0.350877193  0.309851552 0.3357271 0.9615385 0.2972656 0.49734043
## 619  0.350000000  0.308974359 0.3354260 0.9614458 0.2968718 0.49700997
## 919  0.350000000  0.311538462 0.3360215 0.9637681 0.2997896 0.49800797
## 285  0.349122807  0.310661269 0.3357207 0.9636804 0.2994011 0.49767750
## 1279 0.348245614  0.309784076 0.3354204 0.9635922 0.2990126 0.49734748
## 281  0.348245614  0.312348178 0.3360143 0.9659367 0.3019510 0.49834327
## 1223 0.347368421  0.311470985 0.3357143 0.9658537 0.3015679 0.49801325
## 1275 0.346491228  0.310593792 0.3354148 0.9657702 0.3011850 0.49768365
## 861  0.345614035  0.309716599 0.3351159 0.9656863 0.3008021 0.49735450
## 434  0.345614035  0.312280702 0.3357079 0.9680590 0.3037669 0.49834765
## 61   0.344736842  0.311403509 0.3354093 0.9679803 0.3033895 0.49801849
## 425  0.343859649  0.310526316 0.3351111 0.9679012 0.3030123 0.49768977
## 1233 0.342982456  0.309649123 0.3348135 0.9678218 0.3026353 0.49736148
## 295  0.342105263  0.308771930 0.3345164 0.9677419 0.3022584 0.49703362
## 1488 0.341228070  0.307894737 0.3342199 0.9676617 0.3018815 0.49670619
## 1436 0.340350877  0.307017544 0.3339238 0.9675810 0.3015049 0.49637920
## 582  0.339473684  0.306140351 0.3336283 0.9675000 0.3011283 0.49605263
## 547  0.338596491  0.305263158 0.3333333 0.9674185 0.3007519 0.49572650
## 246  0.337719298  0.304385965 0.3330389 0.9673367 0.3003756 0.49540079
## 420  0.336842105  0.303508772 0.3327449 0.9672544 0.2999993 0.49507551
## 366  0.335964912  0.302631579 0.3324515 0.9671717 0.2996232 0.49475066
## 494  0.335087719  0.301754386 0.3321586 0.9670886 0.2992472 0.49442623
## 1425 0.334210526  0.300877193 0.3318662 0.9670051 0.2988713 0.49410223
## 368  0.333333333  0.300000000 0.3315743 0.9669211 0.2984954 0.49377865
## 1360 0.332456140  0.299122807 0.3312830 0.9668367 0.2981197 0.49345550
## 1512 0.331578947  0.298245614 0.3309921 0.9667519 0.2977440 0.49313277
## 814  0.330701754  0.297368421 0.3307018 0.9666667 0.2973684 0.49281046
## 789  0.329824561  0.296491228 0.3304119 0.9665810 0.2969929 0.49248857
## 1222 0.328947368  0.295614035 0.3301226 0.9664948 0.2966174 0.49216710
## 313  0.328947368  0.298178138 0.3307087 0.9689922 0.2997009 0.49315068
## 1178 0.328070175  0.297300945 0.3304196 0.9689119 0.2993315 0.49282920
## 1368 0.328070175  0.299865047 0.3310044 0.9714286 0.3024329 0.49381107
## 443  0.327192982  0.298987854 0.3307155 0.9713542 0.3020697 0.49348958
## 207  0.326315789  0.298110661 0.3304272 0.9712794 0.3017066 0.49316851
## 1021 0.325438596  0.297233468 0.3301394 0.9712042 0.3013436 0.49284785
## 1077 0.324561404  0.296356275 0.3298520 0.9711286 0.3009807 0.49252762
## 1107 0.323684211  0.295479082 0.3295652 0.9710526 0.3006178 0.49220779
## 1141 0.322807018  0.294601889 0.3292789 0.9709763 0.3002551 0.49188838
## 610  0.321929825  0.293724696 0.3289931 0.9708995 0.2998925 0.49156939
## 1416 0.321052632  0.292847503 0.3287077 0.9708223 0.2995300 0.49125081
## 380  0.320175439  0.291970310 0.3284229 0.9707447 0.2991676 0.49093264
## 199  0.320175439  0.294534413 0.3290043 0.9733333 0.3023377 0.49190939
## 319  0.319298246  0.293657220 0.3287197 0.9732620 0.3019818 0.49159120
## 1079 0.318421053  0.292780027 0.3284356 0.9731903 0.3016260 0.49127343
## 856  0.317543860  0.291902834 0.3281520 0.9731183 0.3012703 0.49095607
## 414  0.316666667  0.291025641 0.3278689 0.9730458 0.3009147 0.49063912
## 62   0.315789474  0.290148448 0.3275862 0.9729730 0.3005592 0.49032258
## 1094 0.314912281  0.289271255 0.3273040 0.9728997 0.3002038 0.49000645
## 531  0.314035088  0.288394062 0.3270224 0.9728261 0.2998485 0.48969072
## 1511 0.313157895  0.287516869 0.3267412 0.9727520 0.2994932 0.48937540
## 60   0.312280702  0.286639676 0.3264605 0.9726776 0.2991381 0.48906049
## 1357 0.311403509  0.285762483 0.3261803 0.9726027 0.2987830 0.48874598
## 192  0.310526316  0.284885290 0.3259005 0.9725275 0.2984280 0.48843188
## 211  0.309649123  0.284008097 0.3256213 0.9724518 0.2980730 0.48811818
## 774  0.308771930  0.283130904 0.3253425 0.9723757 0.2977182 0.48780488
## 1056 0.307894737  0.282253711 0.3250642 0.9722992 0.2973633 0.48749198
## 810  0.307017544  0.281376518 0.3247863 0.9722222 0.2970085 0.48717949
## 947  0.306140351  0.280499325 0.3245090 0.9721448 0.2966538 0.48686739
## 40   0.305263158  0.279622132 0.3242321 0.9720670 0.2962991 0.48655570
## 1346 0.304385965  0.278744939 0.3239557 0.9719888 0.2959445 0.48624440
## 566  0.303508772  0.277867746 0.3236797 0.9719101 0.2955898 0.48593350
## 119  0.302631579  0.276990553 0.3234043 0.9718310 0.2952352 0.48562300
## 508  0.301754386  0.276113360 0.3231293 0.9717514 0.2948807 0.48531290
## 352  0.301754386  0.278677463 0.3237043 0.9745042 0.2982086 0.48627951
## 69   0.300877193  0.277800270 0.3234295 0.9744318 0.2978614 0.48596939
## 1016 0.300000000  0.276923077 0.3231552 0.9743590 0.2975142 0.48565966
## 507  0.299122807  0.276045884 0.3228814 0.9742857 0.2971671 0.48535032
## 1358 0.298245614  0.275168691 0.3226080 0.9742120 0.2968200 0.48504137
## 413  0.297368421  0.274291498 0.3223350 0.9741379 0.2964730 0.48473282
## 714  0.296491228  0.273414305 0.3220626 0.9740634 0.2961260 0.48442467
## 552  0.296491228  0.275978408 0.3226351 0.9768786 0.2995137 0.48538755
## 667  0.295614035  0.275101215 0.3223629 0.9768116 0.2991745 0.48507937
## 705  0.294736842  0.274224022 0.3220911 0.9767442 0.2988352 0.48477157
## 1140 0.293859649  0.273346829 0.3218197 0.9766764 0.2984961 0.48446417
## 607  0.292982456  0.272469636 0.3215488 0.9766082 0.2981570 0.48415716
## 690  0.292105263  0.271592443 0.3212784 0.9765396 0.2978180 0.48385054
## 741  0.291228070  0.270715250 0.3210084 0.9764706 0.2974790 0.48354430
## 1242 0.290350877  0.269838057 0.3207389 0.9764012 0.2971401 0.48323846
## 816  0.289473684  0.268960864 0.3204698 0.9763314 0.2968012 0.48293300
## 1472 0.288596491  0.268083671 0.3202012 0.9762611 0.2964623 0.48262792
## 1321 0.287719298  0.267206478 0.3199330 0.9761905 0.2961235 0.48232323
## 1481 0.286842105  0.266329285 0.3196653 0.9761194 0.2957847 0.48201893
## 746  0.285964912  0.265452092 0.3193980 0.9760479 0.2954459 0.48171501
## 913  0.285087719  0.264574899 0.3191312 0.9759760 0.2951071 0.48141147
## 541  0.284210526  0.263697706 0.3188648 0.9759036 0.2947684 0.48110831
## 989  0.283333333  0.262820513 0.3185988 0.9758308 0.2944296 0.48080554
## 222  0.282456140  0.261943320 0.3183333 0.9757576 0.2940909 0.48050314
## 813  0.281578947  0.261066127 0.3180683 0.9756839 0.2937522 0.48020113
## 1036 0.280701754  0.260188934 0.3178037 0.9756098 0.2934134 0.47989950
## 985  0.279824561  0.259311741 0.3175395 0.9755352 0.2930747 0.47959824
## 973  0.278947368  0.258434548 0.3172757 0.9754601 0.2927359 0.47929737
## 328  0.278070175  0.257557355 0.3170124 0.9753846 0.2923971 0.47899687
## 976  0.277192982  0.256680162 0.3167496 0.9753086 0.2920582 0.47869674
## 1181 0.276315789  0.255802969 0.3164872 0.9752322 0.2917194 0.47839699
## 1291 0.275438596  0.254925776 0.3162252 0.9751553 0.2913804 0.47809762
## 951  0.274561404  0.254048583 0.3159636 0.9750779 0.2910415 0.47779862
## 487  0.273684211  0.253171390 0.3157025 0.9750000 0.2907025 0.47750000
## 918  0.273684211  0.255735493 0.3162675 0.9780564 0.2943240 0.47845097
## 1231 0.272807018  0.254858300 0.3160066 0.9779874 0.2939940 0.47815231
## 583  0.271929825  0.253981107 0.3157461 0.9779180 0.2936641 0.47785402
## 191  0.271052632  0.253103914 0.3154860 0.9778481 0.2933341 0.47755611
## 449  0.270175439  0.252226721 0.3152263 0.9777778 0.2930041 0.47725857
## 54   0.269298246  0.251349528 0.3149671 0.9777070 0.2926741 0.47696139
## 1043 0.268421053  0.250472335 0.3147083 0.9776358 0.2923441 0.47666459
## 497  0.267543860  0.249595142 0.3144499 0.9775641 0.2920140 0.47636816
## 1072 0.266666667  0.248717949 0.3141920 0.9774920 0.2916839 0.47607209
## 780  0.265789474  0.247840756 0.3139344 0.9774194 0.2913538 0.47577640
## 462  0.264912281  0.246963563 0.3136773 0.9773463 0.2910236 0.47548107
## 1183 0.264035088  0.246086370 0.3134206 0.9772727 0.2906933 0.47518610
## 1347 0.263157895  0.245209177 0.3131643 0.9771987 0.2903630 0.47489151
## 931  0.262280702  0.244331984 0.3129085 0.9771242 0.2900327 0.47459727
## 530  0.261403509  0.243454791 0.3126531 0.9770492 0.2897022 0.47430341
## 648  0.260526316  0.242577598 0.3123980 0.9769737 0.2893717 0.47400990
## 744  0.259649123  0.241700405 0.3121434 0.9768977 0.2890411 0.47371676
## 832  0.258771930  0.240823212 0.3118893 0.9768212 0.2887104 0.47342398
## 924  0.257894737  0.239946019 0.3116355 0.9767442 0.2883797 0.47313156
## 1402 0.257017544  0.239068826 0.3113821 0.9766667 0.2880488 0.47283951
## 1265 0.256140351  0.238191633 0.3111292 0.9765886 0.2877178 0.47254781
## 661  0.255263158  0.237314440 0.3108766 0.9765101 0.2873867 0.47225647
## 1076 0.254385965  0.236437247 0.3106245 0.9764310 0.2870555 0.47196550
## 1339 0.253508772  0.235560054 0.3103728 0.9763514 0.2867241 0.47167488
## 1276 0.252631579  0.234682861 0.3101215 0.9762712 0.2863926 0.47138462
## 491  0.251754386  0.233805668 0.3098706 0.9761905 0.2860610 0.47109471
## 915  0.250877193  0.232928475 0.3096200 0.9761092 0.2857293 0.47080516
## 587  0.250000000  0.232051282 0.3093700 0.9760274 0.2853973 0.47051597
## 1204 0.250000000  0.234615385 0.3099274 0.9793814 0.2893088 0.47145488
## 676  0.250000000  0.237179487 0.3104839 0.9827586 0.2932425 0.47239264
## 703  0.249122807  0.236302294 0.3102337 0.9826990 0.2929326 0.47210300
## 1520 0.248245614  0.235425101 0.3099839 0.9826389 0.2926228 0.47181373
## 1420 0.247368421  0.234547908 0.3097345 0.9825784 0.2923129 0.47152480
## 1383 0.246491228  0.233670715 0.3094855 0.9825175 0.2920030 0.47123623
## 110  0.245614035  0.232793522 0.3092369 0.9824561 0.2916931 0.47094801
## 1352 0.244736842  0.231916329 0.3089888 0.9823944 0.2913831 0.47066015
## 48   0.243859649  0.231039136 0.3087410 0.9823322 0.2910731 0.47037263
## 927  0.242982456  0.230161943 0.3084936 0.9822695 0.2907631 0.47008547
## 1272 0.242105263  0.229284750 0.3082466 0.9822064 0.2904530 0.46979866
## 853  0.241228070  0.228407557 0.3080000 0.9821429 0.2901429 0.46951220
## 769  0.240350877  0.227530364 0.3077538 0.9820789 0.2898327 0.46922608
## 553  0.240350877  0.230094467 0.3083067 0.9856115 0.2939182 0.47015834
## 704  0.239473684  0.229217274 0.3080607 0.9855596 0.2936202 0.46987219
## 876  0.238596491  0.228340081 0.3078150 0.9855072 0.2933222 0.46958637
## 1236 0.237719298  0.227462888 0.3075697 0.9854545 0.2930243 0.46930091
## 978  0.236842105  0.226585695 0.3073248 0.9854015 0.2927263 0.46901580
## 231  0.235964912  0.225708502 0.3070804 0.9853480 0.2924283 0.46873103
## 39   0.235087719  0.224831309 0.3068362 0.9852941 0.2921304 0.46844660
## 1113 0.234210526  0.223954116 0.3065925 0.9852399 0.2918324 0.46816252
## 575  0.233333333  0.223076923 0.3063492 0.9851852 0.2915344 0.46787879
## 1018 0.232456140  0.222199730 0.3061063 0.9851301 0.2912364 0.46759540
## 1415 0.231578947  0.221322537 0.3058637 0.9850746 0.2909383 0.46731235
## 112  0.230701754  0.220445344 0.3056215 0.9850187 0.2906403 0.46702964
## 1485 0.229824561  0.219568151 0.3053797 0.9849624 0.2903422 0.46674728
## 685  0.228947368  0.218690958 0.3051383 0.9849057 0.2900440 0.46646526
## 131  0.228070175  0.217813765 0.3048973 0.9848485 0.2897458 0.46618357
## 25   0.227192982  0.216936572 0.3046567 0.9847909 0.2894475 0.46590223
## 956  0.226315789  0.216059379 0.3044164 0.9847328 0.2891492 0.46562123
## 1172 0.225438596  0.215182186 0.3041765 0.9846743 0.2888508 0.46534057
## 32   0.224561404  0.214304993 0.3039370 0.9846154 0.2885524 0.46506024
## 550  0.223684211  0.213427800 0.3036979 0.9845560 0.2882539 0.46478025
## 4    0.222807018  0.212550607 0.3034591 0.9844961 0.2879552 0.46450060
## 504  0.221929825  0.211673414 0.3032207 0.9844358 0.2876565 0.46422129
## 1024 0.221052632  0.210796221 0.3029827 0.9843750 0.2873577 0.46394231
## 1103 0.220175439  0.209919028 0.3027451 0.9843137 0.2870588 0.46366366
## 753  0.219298246  0.209041835 0.3025078 0.9842520 0.2867598 0.46338535
## 1463 0.218421053  0.208164642 0.3022709 0.9841897 0.2864607 0.46310738
## 327  0.217543860  0.207287449 0.3020344 0.9841270 0.2861614 0.46282974
## 390  0.216666667  0.206410256 0.3017983 0.9840637 0.2858620 0.46255243
## 773  0.215789474  0.205533063 0.3015625 0.9840000 0.2855625 0.46227545
## 953  0.214912281  0.204655870 0.3013271 0.9839357 0.2852628 0.46199880
## 782  0.214035088  0.203778677 0.3010920 0.9838710 0.2849630 0.46172249
## 1338 0.213157895  0.202901484 0.3008574 0.9838057 0.2846630 0.46144650
## 1217 0.212280702  0.202024291 0.3006231 0.9837398 0.2843629 0.46117085
## 346  0.211403509  0.201147099 0.3003891 0.9836735 0.2840626 0.46089552
## 468  0.210526316  0.200269906 0.3001555 0.9836066 0.2837621 0.46062053
## 1032 0.209649123  0.199392713 0.2999223 0.9835391 0.2834614 0.46034586
## 229  0.208771930  0.198515520 0.2996894 0.9834711 0.2831605 0.46007151
## 934  0.207894737  0.197638327 0.2994569 0.9834025 0.2828594 0.45979750
## 411  0.207017544  0.196761134 0.2992248 0.9833333 0.2825581 0.45952381
## 182  0.206140351  0.195883941 0.2989930 0.9832636 0.2822566 0.45925045
## 997  0.205263158  0.195006748 0.2987616 0.9831933 0.2819549 0.45897741
## 998  0.204385965  0.194129555 0.2985305 0.9831224 0.2816529 0.45870469
## 11   0.203508772  0.193252362 0.2982998 0.9830508 0.2813507 0.45843230
## 288  0.202631579  0.192375169 0.2980695 0.9829787 0.2810482 0.45816024
## 444  0.201754386  0.191497976 0.2978395 0.9829060 0.2807455 0.45788849
## 1445 0.200877193  0.190620783 0.2976099 0.9828326 0.2804425 0.45761707
## 1498 0.200000000  0.189743590 0.2973806 0.9827586 0.2801392 0.45734597
## 709  0.199122807  0.188866397 0.2971517 0.9826840 0.2798356 0.45707519
## 225  0.198245614  0.187989204 0.2969231 0.9826087 0.2795318 0.45680473
## 26   0.197368421  0.187112011 0.2966949 0.9825328 0.2792276 0.45653459
## 455  0.196491228  0.186234818 0.2964670 0.9824561 0.2789231 0.45626478
## 1519 0.195614035  0.185357625 0.2962394 0.9823789 0.2786183 0.45599527
## 715  0.195614035  0.187921727 0.2967791 0.9867257 0.2835048 0.45690673
## 1100 0.194736842  0.187044534 0.2965517 0.9866667 0.2832184 0.45663717
## 1422 0.193859649  0.186167341 0.2963247 0.9866071 0.2829318 0.45636792
## 1101 0.192982456  0.185290148 0.2960979 0.9865471 0.2826450 0.45609900
## 1063 0.192105263  0.184412955 0.2958716 0.9864865 0.2823580 0.45583039
## 409  0.191228070  0.183535762 0.2956455 0.9864253 0.2820709 0.45556210
## 1442 0.190350877  0.182658570 0.2954198 0.9863636 0.2817835 0.45529412
## 1025 0.189473684  0.181781377 0.2951945 0.9863014 0.2814959 0.45502646
## 170  0.188596491  0.180904184 0.2949695 0.9862385 0.2812080 0.45475911
## 1322 0.187719298  0.180026991 0.2947449 0.9861751 0.2809200 0.45449207
## 1459 0.186842105  0.179149798 0.2945205 0.9861111 0.2806317 0.45422535
## 972  0.185964912  0.178272605 0.2942966 0.9860465 0.2803431 0.45395894
## 1014 0.185087719  0.177395412 0.2940729 0.9859813 0.2800543 0.45369285
## 340  0.184210526  0.176518219 0.2938497 0.9859155 0.2797652 0.45342707
## 616  0.183333333  0.175641026 0.2936267 0.9858491 0.2794758 0.45316159
## 1031 0.182456140  0.174763833 0.2934041 0.9857820 0.2791861 0.45289643
## 675  0.182456140  0.177327935 0.2939394 0.9904762 0.2844156 0.45380117
## 407  0.181578947  0.176450742 0.2937169 0.9904306 0.2841475 0.45353594
## 791  0.180701754  0.175573549 0.2934947 0.9903846 0.2838793 0.45327103
## 1192 0.179824561  0.174696356 0.2932729 0.9903382 0.2836110 0.45300642
## 809  0.178947368  0.173819163 0.2930514 0.9902913 0.2833426 0.45274212
## 1437 0.178070175  0.172941970 0.2928302 0.9902439 0.2830741 0.45247813
## 428  0.177192982  0.172064777 0.2926094 0.9901961 0.2828054 0.45221445
## 153  0.176315789  0.171187584 0.2923888 0.9901478 0.2825366 0.45195108
## 1235 0.175438596  0.170310391 0.2921687 0.9900990 0.2822677 0.45168801
## 625  0.174561404  0.169433198 0.2919488 0.9900498 0.2819986 0.45142525
## 730  0.173684211  0.168556005 0.2917293 0.9900000 0.2817293 0.45116279
## 1260 0.172807018  0.167678812 0.2915101 0.9899497 0.2814599 0.45090064
## 1177 0.171929825  0.166801619 0.2912913 0.9898990 0.2811903 0.45063879
## 293  0.171052632  0.165924426 0.2910728 0.9898477 0.2809205 0.45037725
## 1300 0.170175439  0.165047233 0.2908546 0.9897959 0.2806505 0.45011601
## 777  0.169298246  0.164170040 0.2906367 0.9897436 0.2803803 0.44985507
## 1521 0.168421053  0.163292848 0.2904192 0.9896907 0.2801099 0.44959444
## 1147 0.167543860  0.162415655 0.2902019 0.9896373 0.2798393 0.44933411
## 986  0.166666667  0.161538462 0.2899851 0.9895833 0.2795684 0.44907407
## 1428 0.165789474  0.160661269 0.2897685 0.9895288 0.2792973 0.44881434
## 852  0.164912281  0.159784076 0.2895522 0.9894737 0.2790259 0.44855491
## 1270 0.164035088  0.158906883 0.2893363 0.9894180 0.2787543 0.44829578
## 1035 0.163157895  0.158029690 0.2891207 0.9893617 0.2784824 0.44803695
## 647  0.162280702  0.157152497 0.2889054 0.9893048 0.2782102 0.44777842
## 672  0.161403509  0.156275304 0.2886905 0.9892473 0.2779378 0.44752018
## 1318 0.160526316  0.155398111 0.2884758 0.9891892 0.2776650 0.44726225
## 771  0.159649123  0.154520918 0.2882615 0.9891304 0.2773920 0.44700461
## 1342 0.158771930  0.153643725 0.2880475 0.9890710 0.2771186 0.44674727
## 135  0.157894737  0.152766532 0.2878338 0.9890110 0.2768448 0.44649022
## 1229 0.157017544  0.151889339 0.2876205 0.9889503 0.2765707 0.44623347
## 1289 0.156140351  0.151012146 0.2874074 0.9888889 0.2762963 0.44597701
## 322  0.155263158  0.150134953 0.2871947 0.9888268 0.2760215 0.44572085
## 526  0.154385965  0.149257760 0.2869822 0.9887640 0.2757463 0.44546498
## 923  0.153508772  0.148380567 0.2867701 0.9887006 0.2754707 0.44520941
## 628  0.152631579  0.147503374 0.2865583 0.9886364 0.2751947 0.44495413
## 618  0.151754386  0.146626181 0.2863469 0.9885714 0.2749183 0.44469914
## 614  0.150877193  0.145748988 0.2861357 0.9885057 0.2746414 0.44444444
## 1258 0.150000000  0.144871795 0.2859248 0.9884393 0.2743641 0.44419004
## 1380 0.149122807  0.143994602 0.2857143 0.9883721 0.2740864 0.44393593
## 733  0.148245614  0.143117409 0.2855040 0.9883041 0.2738081 0.44368210
## 1034 0.147368421  0.142240216 0.2852941 0.9882353 0.2735294 0.44342857
## 1444 0.146491228  0.141363023 0.2850845 0.9881657 0.2732502 0.44317533
## 580  0.145614035  0.140485830 0.2848752 0.9880952 0.2729704 0.44292237
## 1119 0.144736842  0.139608637 0.2846662 0.9880240 0.2726901 0.44266971
## 102  0.143859649  0.138731444 0.2844575 0.9879518 0.2724093 0.44241733
## 1501 0.142982456  0.137854251 0.2842491 0.9878788 0.2721279 0.44216524
## 860  0.142105263  0.136977058 0.2840410 0.9878049 0.2718459 0.44191344
## 1356 0.141228070  0.136099865 0.2838332 0.9877301 0.2715633 0.44166192
## 378  0.140350877  0.135222672 0.2836257 0.9876543 0.2712801 0.44141069
## 333  0.139473684  0.134345479 0.2834186 0.9875776 0.2709962 0.44115975
## 866  0.138596491  0.133468286 0.2832117 0.9875000 0.2707117 0.44090909
## 904  0.137719298  0.132591093 0.2830051 0.9874214 0.2704265 0.44065872
## 331  0.136842105  0.131713900 0.2827988 0.9873418 0.2701406 0.44040863
## 670  0.135964912  0.130836707 0.2825929 0.9872611 0.2698540 0.44015882
## 534  0.135087719  0.129959514 0.2823872 0.9871795 0.2695667 0.43990930
## 1075 0.134210526  0.129082321 0.2821818 0.9870968 0.2692786 0.43966006
## 1216 0.133333333  0.128205128 0.2819767 0.9870130 0.2689897 0.43941110
## 1153 0.132456140  0.127327935 0.2817720 0.9869281 0.2687001 0.43916242
## 1152 0.131578947  0.126450742 0.2815675 0.9868421 0.2684096 0.43891403
## 731  0.130701754  0.125573549 0.2813633 0.9867550 0.2681183 0.43866591
## 347  0.129824561  0.124696356 0.2811594 0.9866667 0.2678261 0.43841808
## 1278 0.128947368  0.123819163 0.2809558 0.9865772 0.2675330 0.43817053
## 1106 0.128070175  0.122941970 0.2807525 0.9864865 0.2672390 0.43792325
## 877  0.127192982  0.122064777 0.2805495 0.9863946 0.2669441 0.43767625
## 1225 0.126315789  0.121187584 0.2803468 0.9863014 0.2666482 0.43742954
## 1522 0.125438596  0.120310391 0.2801444 0.9862069 0.2663513 0.43718310
## 1345 0.124561404  0.119433198 0.2799423 0.9861111 0.2660534 0.43693694
## 1221 0.123684211  0.118556005 0.2797404 0.9860140 0.2657544 0.43669105
## 833  0.122807018  0.117678812 0.2795389 0.9859155 0.2654544 0.43644544
## 335  0.121929825  0.116801619 0.2793377 0.9858156 0.2651533 0.43620011
## 674  0.121052632  0.115924426 0.2791367 0.9857143 0.2648510 0.43595506
## 1220 0.120175439  0.115047233 0.2789360 0.9856115 0.2645475 0.43571028
## 812  0.119298246  0.114170040 0.2787356 0.9855072 0.2642429 0.43546577
## 546  0.118421053  0.113292848 0.2785355 0.9854015 0.2639370 0.43522154
## 592  0.117543860  0.112415655 0.2783357 0.9852941 0.2636298 0.43497758
## 993  0.116666667  0.111538462 0.2781362 0.9851852 0.2633214 0.43473389
## 1353 0.115789474  0.110661269 0.2779370 0.9850746 0.2630116 0.43449048
## 909  0.114912281  0.109784076 0.2777380 0.9849624 0.2627004 0.43424734
## 1037 0.114035088  0.108906883 0.2775393 0.9848485 0.2623878 0.43400447
## 665  0.113157895  0.108029690 0.2773410 0.9847328 0.2620738 0.43376188
## 735  0.112280702  0.107152497 0.2771429 0.9846154 0.2617582 0.43351955
## 929  0.111403509  0.106275304 0.2769450 0.9844961 0.2614412 0.43327750
## 1136 0.110526316  0.105398111 0.2767475 0.9843750 0.2611225 0.43303571
## 1120 0.109649123  0.104520918 0.2765502 0.9842520 0.2608022 0.43279420
## 784  0.108771930  0.103643725 0.2763533 0.9841270 0.2604803 0.43255295
## 1186 0.107894737  0.102766532 0.2761566 0.9840000 0.2601566 0.43231198
## 608  0.107017544  0.101889339 0.2759602 0.9838710 0.2598311 0.43207127
## 1432 0.106140351  0.101012146 0.2757640 0.9837398 0.2595039 0.43183083
## 743  0.105263158  0.100134953 0.2755682 0.9836066 0.2591747 0.43159066
## 1361 0.104385965  0.099257760 0.2753726 0.9834711 0.2588437 0.43135075
## 342  0.103508772  0.098380567 0.2751773 0.9833333 0.2585106 0.43111111
## 89   0.102631579  0.097503374 0.2749823 0.9831933 0.2581756 0.43087174
## 754  0.101754386  0.096626181 0.2747875 0.9830508 0.2578384 0.43063263
## 613  0.100877193  0.095748988 0.2745931 0.9829060 0.2574990 0.43039379
## 350  0.100877193  0.098313090 0.2751061 0.9913793 0.2664854 0.43126386
## 1199 0.100000000  0.097435897 0.2749117 0.9913043 0.2662160 0.43102493
## 958  0.099122807  0.096558704 0.2747175 0.9912281 0.2659456 0.43078627
## 834  0.098245614  0.095681511 0.2745236 0.9911504 0.2656741 0.43054787
## 1378 0.097368421  0.094804318 0.2743300 0.9910714 0.2654015 0.43030973
## 865  0.096491228  0.093927126 0.2741367 0.9909910 0.2651277 0.43007186
## 1350 0.095614035  0.093049933 0.2739437 0.9909091 0.2648528 0.42983425
## 1475 0.094736842  0.092172740 0.2737509 0.9908257 0.2645766 0.42959691
## 1013 0.093859649  0.091295547 0.2735584 0.9907407 0.2642991 0.42935982
## 1020 0.092982456  0.090418354 0.2733661 0.9906542 0.2640203 0.42912300
## 693  0.092105263  0.089541161 0.2731742 0.9905660 0.2637402 0.42888644
## 825  0.091228070  0.088663968 0.2729825 0.9904762 0.2634586 0.42865014
## 770  0.090350877  0.087786775 0.2727910 0.9903846 0.2631756 0.42841410
## 1097 0.089473684  0.086909582 0.2725999 0.9902913 0.2628911 0.42817832
## 386  0.088596491  0.086032389 0.2724090 0.9901961 0.2626050 0.42794279
## 143  0.087719298  0.085155196 0.2722183 0.9900990 0.2623173 0.42770753
## 163  0.086842105  0.084278003 0.2720280 0.9900000 0.2620280 0.42747253
## 1143 0.085964912  0.083400810 0.2718379 0.9898990 0.2617369 0.42723778
## 988  0.085087719  0.082523617 0.2716480 0.9897959 0.2614440 0.42700329
## 76   0.084210526  0.081646424 0.2714585 0.9896907 0.2611492 0.42676906
## 332  0.083333333  0.080769231 0.2712692 0.9895833 0.2608525 0.42653509
## 975  0.082456140  0.079892038 0.2710801 0.9894737 0.2605538 0.42630137
## 1343 0.081578947  0.079014845 0.2708914 0.9893617 0.2602531 0.42606791
## 1439 0.080701754  0.078137652 0.2707029 0.9892473 0.2599502 0.42583470
## 1502 0.079824561  0.077260459 0.2705146 0.9891304 0.2596450 0.42560175
## 538  0.078947368  0.076383266 0.2703266 0.9890110 0.2593376 0.42536905
## 456  0.078070175  0.075506073 0.2701389 0.9888889 0.2590278 0.42513661
## 836  0.077192982  0.074628880 0.2699514 0.9887640 0.2587155 0.42490442
## 983  0.076315789  0.073751687 0.2697642 0.9886364 0.2584006 0.42467249
## 1118 0.075438596  0.072874494 0.2695773 0.9885057 0.2580830 0.42444081
## 1157 0.074561404  0.071997301 0.2693906 0.9883721 0.2577627 0.42420938
## 412  0.073684211  0.071120108 0.2692042 0.9882353 0.2574394 0.42397820
## 1400 0.072807018  0.070242915 0.2690180 0.9880952 0.2571132 0.42374728
## 946  0.071929825  0.069365722 0.2688321 0.9879518 0.2567839 0.42351660
## 855  0.071052632  0.068488529 0.2686464 0.9878049 0.2564513 0.42328618
## 1399 0.070175439  0.067611336 0.2684610 0.9876543 0.2561153 0.42305601
## 423  0.069298246  0.066734143 0.2682759 0.9875000 0.2557759 0.42282609
## 323  0.068421053  0.065856950 0.2680910 0.9873418 0.2554327 0.42259641
## 680  0.067543860  0.064979757 0.2679063 0.9871795 0.2550858 0.42236699
## 858  0.066666667  0.064102564 0.2677220 0.9870130 0.2547349 0.42213782
## 1112 0.065789474  0.063225371 0.2675378 0.9868421 0.2543799 0.42190889
## 729  0.064912281  0.062348178 0.2673540 0.9866667 0.2540206 0.42168022
## 701  0.064035088  0.061470985 0.2671703 0.9864865 0.2536568 0.42145179
## 1071 0.063157895  0.060593792 0.2669870 0.9863014 0.2532883 0.42122361
## 678  0.062280702  0.059716599 0.2668038 0.9861111 0.2529150 0.42099567
## 509  0.061403509  0.058839406 0.2666210 0.9859155 0.2525365 0.42076798
## 224  0.060526316  0.057962213 0.2664384 0.9857143 0.2521526 0.42054054
## 653  0.059649123  0.057085020 0.2662560 0.9855072 0.2517632 0.42031334
## 156  0.058771930  0.056207827 0.2660739 0.9852941 0.2513680 0.42008639
## 1277 0.057894737  0.055330634 0.2658920 0.9850746 0.2509666 0.41985969
## 176  0.057017544  0.054453441 0.2657104 0.9848485 0.2505589 0.41963323
## 1019 0.056140351  0.053576248 0.2655290 0.9846154 0.2501444 0.41940701
## 933  0.055263158  0.052699055 0.2653479 0.9843750 0.2497229 0.41918103
## 787  0.054385965  0.051821862 0.2651670 0.9841270 0.2492940 0.41895530
## 627  0.053508772  0.050944669 0.2649864 0.9838710 0.2488573 0.41872982
## 348  0.052631579  0.050067476 0.2648060 0.9836066 0.2484125 0.41850457
## 1398 0.051754386  0.049190283 0.2646259 0.9833333 0.2479592 0.41827957
## 952  0.050877193  0.048313090 0.2644460 0.9830508 0.2474968 0.41805481
## 590  0.050000000  0.047435897 0.2642663 0.9827586 0.2470249 0.41783029
## 1137 0.049122807  0.046558704 0.2640869 0.9824561 0.2465430 0.41760601
## 737  0.048245614  0.045681511 0.2639077 0.9821429 0.2460506 0.41738197
## 830  0.047368421  0.044804318 0.2637288 0.9818182 0.2455470 0.41715818
## 467  0.046491228  0.043927126 0.2635501 0.9814815 0.2450316 0.41693462
## 593  0.045614035  0.043049933 0.2633717 0.9811321 0.2445038 0.41671130
## 1033 0.044736842  0.042172740 0.2631935 0.9807692 0.2439627 0.41648822
## 1073 0.043859649  0.041295547 0.2630156 0.9803922 0.2434077 0.41626538
## 954  0.042982456  0.040418354 0.2628378 0.9800000 0.2428378 0.41604278
## 1162 0.042982456  0.042982456 0.2633356 1.0000000 0.2633356 0.41688936
## 794  0.042105263  0.042105263 0.2631579 1.0000000 0.2631579 0.41666667
## 488  0.041228070  0.041228070 0.2629804 1.0000000 0.2629804 0.41644421
## 440  0.040350877  0.040350877 0.2628032 1.0000000 0.2628032 0.41622199
## 874  0.039473684  0.039473684 0.2626263 1.0000000 0.2626263 0.41600000
## 1202 0.038596491  0.038596491 0.2624495 1.0000000 0.2624495 0.41577825
## 903  0.037719298  0.037719298 0.2622730 1.0000000 0.2622730 0.41555674
## 424  0.036842105  0.036842105 0.2620968 1.0000000 0.2620968 0.41533546
## 506  0.035964912  0.035964912 0.2619208 1.0000000 0.2619208 0.41511442
## 1478 0.035087719  0.035087719 0.2617450 1.0000000 0.2617450 0.41489362
## 308  0.034210526  0.034210526 0.2615694 1.0000000 0.2615694 0.41467305
## 502  0.032456140  0.032456140 0.2612190 1.0000000 0.2612190 0.41423261
## 1121 0.032456140  0.032456140 0.2612190 1.0000000 0.2612190 0.41423261
## 655  0.031578947  0.031578947 0.2610442 1.0000000 0.2610442 0.41401274
## 529  0.030701754  0.030701754 0.2608696 1.0000000 0.2608696 0.41379310
## 1517 0.029824561  0.029824561 0.2606952 1.0000000 0.2606952 0.41357370
## 306  0.028947368  0.028947368 0.2605210 1.0000000 0.2605210 0.41335453
## 1426 0.028070175  0.028070175 0.2603471 1.0000000 0.2603471 0.41313559
## 433  0.027192982  0.027192982 0.2601734 1.0000000 0.2601734 0.41291689
## 429  0.026315789  0.026315789 0.2600000 1.0000000 0.2600000 0.41269841
## 651  0.025438596  0.025438596 0.2598268 1.0000000 0.2598268 0.41248017
## 1303 0.024561404  0.024561404 0.2596538 1.0000000 0.2596538 0.41226216
## 1110 0.023684211  0.023684211 0.2594810 1.0000000 0.2594810 0.41204437
## 793  0.022807018  0.022807018 0.2593085 1.0000000 0.2593085 0.41182682
## 1391 0.021929825  0.021929825 0.2591362 1.0000000 0.2591362 0.41160950
## 738  0.021052632  0.021052632 0.2589641 1.0000000 0.2589641 0.41139241
## 1053 0.020175439  0.020175439 0.2587923 1.0000000 0.2587923 0.41117554
## 1054 0.019298246  0.019298246 0.2586207 1.0000000 0.2586207 0.41095890
## 549  0.018421053  0.018421053 0.2584493 1.0000000 0.2584493 0.41074250
## 385  0.017543860  0.017543860 0.2582781 1.0000000 0.2582781 0.41052632
## 859  0.016666667  0.016666667 0.2581072 1.0000000 0.2581072 0.41031036
## 505  0.015789474  0.015789474 0.2579365 1.0000000 0.2579365 0.41009464
## 544  0.014912281  0.014912281 0.2577660 1.0000000 0.2577660 0.40987914
## 329  0.014035088  0.014035088 0.2575958 1.0000000 0.2575958 0.40966387
## 792  0.013157895  0.013157895 0.2574257 1.0000000 0.2574257 0.40944882
## 831  0.012280702  0.012280702 0.2572559 1.0000000 0.2572559 0.40923400
## 503  0.011403509  0.011403509 0.2570864 1.0000000 0.2570864 0.40901940
## 1180 0.010526316  0.010526316 0.2569170 1.0000000 0.2569170 0.40880503
## 1117 0.009649123  0.009649123 0.2567479 1.0000000 0.2567479 0.40859089
## 752  0.008771930  0.008771930 0.2565789 1.0000000 0.2565789 0.40837696
## 591  0.007894737  0.007894737 0.2564103 1.0000000 0.2564103 0.40816327
## 1200 0.007017544  0.007017544 0.2562418 1.0000000 0.2562418 0.40794979
## 1462 0.006140351  0.006140351 0.2560735 1.0000000 0.2560735 0.40773654
## 1397 0.005263158  0.005263158 0.2559055 1.0000000 0.2559055 0.40752351
## 511  0.004385965  0.004385965 0.2557377 1.0000000 0.2557377 0.40731070
## 532  0.003508772  0.003508772 0.2555701 1.0000000 0.2555701 0.40709812
## 1198 0.002631579  0.002631579 0.2554028 1.0000000 0.2554028 0.40688576
## 304  0.001754386  0.001754386 0.2552356 1.0000000 0.2552356 0.40667362
## 689  0.000877193  0.000877193 0.2550687 1.0000000 0.2550687 0.40646170
## 977  0.000000000  0.000000000 0.2549020 0.0000000       NaN 0.40625000
##             MCC         FPR           PG          RG
## 759  0.04372365 0.000000000 1.0000000000 0.000000000
## 555  0.06185481 0.000000000 1.0000000000 0.000000000
## 1529 0.07578116 0.000000000 1.0000000000 0.000000000
## 967  0.08753321 0.000000000 1.0000000000 0.000000000
## 136  0.09789718 0.000000000 1.0000000000 0.000000000
## 1455 0.10727617 0.000000000 1.0000000000 0.000000000
## 1129 0.11590954 0.000000000 1.0000000000 0.000000000
## 517  0.12395321 0.000000000 1.0000000000 0.000000000
## 1446 0.13151545 0.000000000 1.0000000000 0.000000000
## 1331 0.13867505 0.000000000 1.0000000000 0.000000000
## 203  0.14549149 0.000000000 1.0000000000 0.000000000
## 169  0.15201095 0.000000000 1.0000000000 0.000000000
## 1022 0.14193052 0.000877193 0.8277795079 0.000000000
## 1082 0.14854840 0.000877193 0.8395542427 0.000000000
## 1465 0.13967878 0.001754386 0.7115789474 0.000000000
## 1102 0.13153005 0.002631579 0.6080386513 0.000000000
## 917  0.13830552 0.002631579 0.6284829721 0.000000000
## 1330 0.14481678 0.002631579 0.6469298246 0.000000000
## 121  0.15109140 0.002631579 0.6636535938 0.000000000
## 721  0.15715266 0.002631579 0.6788815789 0.000000000
## 24   0.16302041 0.002631579 0.6928034372 0.000000000
## 1329 0.16871171 0.002631579 0.7055785124 0.000000000
## 598  0.17424136 0.002631579 0.7173415581 0.000000000
## 218  0.17962228 0.002631579 0.7282072368 0.000000000
## 602  0.18486581 0.002631579 0.7382736842 0.000000000
## 1087 0.18998198 0.002631579 0.7476253504 0.000000000
## 18   0.19497970 0.002631579 0.7563352827 0.000000000
## 764  0.19986692 0.002631579 0.7644669710 0.000000000
## 262  0.20465077 0.002631579 0.7720758496 0.000000000
## 1126 0.20933769 0.002631579 0.7792105263 0.000000000
## 480  0.21393347 0.002631579 0.7859137959 0.000000000
## 132  0.20796303 0.003508772 0.7282072368 0.000000000
## 1083 0.21254846 0.003508772 0.7358271712 0.000000000
## 485  0.21705019 0.003508772 0.7430340557 0.000000000
## 726  0.22147275 0.003508772 0.7498603652 0.000000000
## 862  0.21592610 0.004385965 0.7005969786 0.000000000
## 484  0.22033378 0.004385965 0.7080081504 0.000000000
## 1325 0.22466849 0.004385965 0.7150641493 0.000000000
## 1205 0.22893382 0.004385965 0.7217896813 0.000000000
## 796  0.23313309 0.004385965 0.7282072368 0.000000000
## 1009 0.23726936 0.004385965 0.7343373305 0.000000000
## 1085 0.24134549 0.004385965 0.7401987111 0.000000000
## 1335 0.24536413 0.004385965 0.7458085452 0.000000000
## 1122 0.24932776 0.004385965 0.7511825794 0.000000000
## 999  0.25323868 0.004385965 0.7563352827 0.000000000
## 763  0.25709905 0.004385965 0.7612799721 0.000000000
## 1161 0.26091089 0.004385965 0.7660289247 0.000000000
## 1371 0.26467611 0.004385965 0.7705934759 0.000000000
## 392  0.26839649 0.004385965 0.7749841075 0.000000000
## 1410 0.26363859 0.005263158 0.7382736842 0.000000000
## 1334 0.26735450 0.005263158 0.7430340557 0.000000000
## 477  0.27102797 0.005263158 0.7476253504 0.000000000
## 1008 0.27466050 0.005263158 0.7520563602 0.000000000
## 247  0.27825355 0.005263158 0.7563352827 0.000000000
## 878  0.28180846 0.005263158 0.7604697695 0.000000000
## 1089 0.28532652 0.005263158 0.7644669710 0.000000000
## 756  0.28880896 0.005263158 0.7683335763 0.000000000
## 399  0.29225694 0.005263158 0.7720758496 0.000000000
## 960  0.29567155 0.005263158 0.7756996628 0.000000000
## 27   0.29905384 0.005263158 0.7792105263 0.000000000
## 450  0.29473947 0.006140351 0.7489073396 0.000000000
## 34   0.29811954 0.006140351 0.7526767621 0.000000000
## 1447 0.30146870 0.006140351 0.7563352827 0.000000000
## 775  0.29729668 0.007017544 0.7282072368 0.000000000
## 1365 0.30064203 0.007017544 0.7320710059 0.000000000
## 1203 0.30395782 0.007017544 0.7358271712 0.000000000
## 1288 0.29991584 0.007894737 0.7096059373 0.000000000
## 1251 0.30322661 0.007894737 0.7135255418 0.000000000
## 1042 0.30650911 0.007894737 0.7173415581 0.000000000
## 168  0.30258649 0.008771930 0.6928034372 0.000000000
## 312  0.30586306 0.008771930 0.6967498095 0.000000000
## 515  0.30911258 0.008771930 0.7005969786 0.000000000
## 251  0.31233578 0.008771930 0.7043485990 0.000000000
## 252  0.31553337 0.008771930 0.7080081504 0.000000000
## 720  0.31870601 0.008771930 0.7115789474 0.000000000
## 882  0.32185434 0.008771930 0.7150641493 0.000000000
## 1328 0.32497899 0.008771930 0.7184667690 0.000000000
## 846  0.32808054 0.008771930 0.7217896813 0.000000000
## 256  0.33115957 0.008771930 0.7250356303 0.000000000
## 1314 0.32747945 0.009649123 0.7033347039 0.000000000
## 146  0.33055447 0.009649123 0.7066878444 0.000000000
## 276  0.33360782 0.009649123 0.7099666552 0.000000000
## 148  0.33001886 0.010526316 0.6894362485 0.000000000
## 724  0.33306764 0.010526316 0.6928034372 0.000000000
## 604  0.33609556 0.010526316 0.6960990712 0.000000000
## 174  0.33259172 0.011403509 0.6766281916 0.000000000
## 1453 0.33561464 0.011403509 0.6799966623 0.000000000
## 725  0.33861748 0.011403509 0.6832964060 0.000000000
## 1206 0.34160069 0.011403509 0.6865294786 0.000000000
## 193  0.34456471 0.011403509 0.6896978558 0.000000000
## 1247 0.34750995 0.011403509 0.6928034372 0.000000000
## 196  0.35043683 0.011403509 0.6958480499 0.000000000
## 843  0.35334574 0.011403509 0.6988334520 0.000000000
## 718  0.35623706 0.011403509 0.7017613352 0.000000000
## 722  0.35911117 0.011403509 0.7046333285 0.000000000
## 273  0.36196841 0.011403509 0.7074510005 0.000000000
## 233  0.36480914 0.011403509 0.7102158628 0.000000000
## 125  0.36763369 0.011403509 0.7129293715 0.000000000
## 1528 0.37044240 0.011403509 0.7155929309 0.000000000
## 1128 0.37323557 0.011403509 0.7182078947 0.000000000
## 637  0.37601351 0.011403509 0.7207755690 0.000000000
## 92   0.37877653 0.011403509 0.7232972136 0.000000000
## 82   0.38152491 0.011403509 0.7257740449 0.000000000
## 1004 0.38425893 0.011403509 0.7282072368 0.000000000
## 479  0.38697886 0.011403509 0.7305979234 0.000000000
## 398  0.38968498 0.011403509 0.7329471998 0.000000000
## 454  0.38649706 0.012280702 0.7165323563 0.000000000
## 1249 0.38920154 0.012280702 0.7189462855 0.000000000
## 1262 0.38606222 0.013157895 0.7031084571 0.000000000
## 1504 0.38295875 0.014035088 0.6877250979 0.000000000
## 171  0.37989035 0.014912281 0.6727794651 0.000000000
## 120  0.38261410 0.014912281 0.6754225128 0.000000000
## 150  0.38532438 0.014912281 0.6780236675 0.000000000
## 838  0.38802143 0.014912281 0.6805839044 0.000000000
## 887  0.39070550 0.014912281 0.6831041687 0.000000000
## 842  0.39337681 0.014912281 0.6855853777 0.000000000
## 1155 0.39039216 0.015789474 0.6714419184 0.000000000
## 7    0.39571665 0.015789474 0.6764389967 0.001415447
## 43   0.39571665 0.015789474 0.6764389967 0.001415447
## 767  0.39836052 0.015789474 0.6788815789 0.002329492
## 29   0.40099242 0.015789474 0.6812879477 0.003261186
## 900  0.39807618 0.016666667 0.6677976350 0.003261186
## 1525 0.40070534 0.016666667 0.6702359707 0.004210526
## 391  0.40332287 0.016666667 0.6726391779 0.005177515
## 1210 0.40592896 0.016666667 0.6750080000 0.006162151
## 402  0.40852379 0.016666667 0.6773431595 0.007164435
## 128  0.41110756 0.016666667 0.6796453593 0.008184366
## 1207 0.41368045 0.016666667 0.6819152832 0.009221945
## 1246 0.41624262 0.016666667 0.6841535965 0.010277172
## 458  0.41341564 0.017543860 0.6714419184 0.010277172
## 145  0.41061559 0.018421053 0.6590371681 0.010277172
## 1527 0.41318351 0.018421053 0.6613609178 0.011350047
## 885  0.41574095 0.018421053 0.6636535938 0.012440569
## 601  0.41828808 0.018421053 0.6659158059 0.013548739
## 126  0.42082505 0.018421053 0.6681481481 0.014674556
## 179  0.42335203 0.018421053 0.6703511997 0.015818021
## 108  0.42061661 0.019298246 0.6585046451 0.015818021
## 393  0.42314124 0.019298246 0.6607302756 0.016979134
## 101  0.42565613 0.019298246 0.6629274392 0.018157895
## 840  0.42816143 0.019298246 0.6650966702 0.019354303
## 712  0.42547232 0.020175439 0.6536656263 0.019354303
## 408  0.42280676 0.021052632 0.6424894810 0.019354303
## 2    0.42531664 0.021052632 0.6447233297 0.020568359
## 1088 0.42781713 0.021052632 0.6469298246 0.021800062
## 104  0.43030838 0.021052632 0.6491094562 0.023049413
## 799  0.43279052 0.021052632 0.6512627036 0.024316412
## 1167 0.43017463 0.021929825 0.6405006686 0.024316412
## 114  0.43265433 0.021929825 0.6426692073 0.025601059
## 1248 0.43512515 0.021929825 0.6448121114 0.026903353
## 1250 0.43758722 0.021929825 0.6469298246 0.028223295
## 445  0.43501219 0.022807018 0.6365140956 0.028223295
## 961  0.43747187 0.022807018 0.6386453929 0.029560884
## 240  0.43992302 0.022807018 0.6407522073 0.030916122
## 405  0.44236575 0.022807018 0.6428349504 0.032289007
## 1201 0.43982981 0.023684211 0.6327444000 0.032289007
## 483  0.44227022 0.023684211 0.6348392245 0.033679539
## 1266 0.43976020 0.024561404 0.6249874555 0.033679539
## 475  0.44219817 0.024561404 0.6270924869 0.035087719
## 307  0.44462802 0.024561404 0.6291743956 0.036513547
## 1038 0.44214883 0.025438596 0.6195836760 0.036513547
## 1194 0.43968867 0.026315789 0.6101819496 0.036513547
## 1164 0.44212146 0.026315789 0.6123023608 0.037957023
## 1451 0.44454631 0.026315789 0.6144002409 0.039418146
## 397  0.44696331 0.026315789 0.6164759385 0.040896917
## 1175 0.44453756 0.027192982 0.6073423227 0.040896917
## 1414 0.44212981 0.028070175 0.5983833877 0.040896917
## 237  0.44454931 0.028070175 0.6004914218 0.042393335
## 1506 0.44216421 0.028947368 0.5917276450 0.042393335
## 634  0.44458092 0.028947368 0.5938388564 0.043907402
## 257  0.44699005 0.028947368 0.5959287926 0.045439116
## 968  0.44939169 0.028947368 0.5979977645 0.046988477
## 175  0.45178594 0.028947368 0.6000460775 0.048555486
## 835  0.44943709 0.029824561 0.5915403297 0.048555486
## 1208 0.45182874 0.029824561 0.5935915890 0.050140143
## 95   0.44950104 0.030701754 0.5852631579 0.050140143
## 77   0.45189002 0.030701754 0.5873163264 0.051742448
## 1523 0.44958297 0.031578947 0.5791590438 0.051742448
## 111  0.45196924 0.031578947 0.5812131642 0.053362400
## 702  0.44968237 0.032456140 0.5732211525 0.053362400
## 1212 0.45206587 0.032456140 0.5752753411 0.055000000
## 867  0.44979872 0.033333333 0.5674429962 0.055000000
## 17   0.45217940 0.033333333 0.5694964376 0.056655248
## 395  0.45455319 0.033333333 0.5715309505 0.058328143
## 55   0.45230937 0.034210526 0.5638703549 0.058328143
## 1407 0.45008036 0.035087719 0.5563415478 0.058328143
## 83   0.45245531 0.035087719 0.5583912956 0.060018686
## 519  0.45482351 0.035087719 0.5604226902 0.061726876
## 1061 0.45261677 0.035964912 0.5530537454 0.061726876
## 1395 0.45042426 0.036842105 0.5458089669 0.061726876
## 911  0.44824578 0.037719298 0.5386856685 0.061726876
## 594  0.45061848 0.037719298 0.5407429102 0.063452715
## 1306 0.44845740 0.038596491 0.5337513706 0.063452715
## 636  0.45082703 0.038596491 0.5358038577 0.065196201
## 84   0.44868298 0.039473684 0.5289399567 0.065196201
## 671  0.44655225 0.040350877 0.5221883110 0.065196201
## 719  0.44892214 0.040350877 0.5242470243 0.066957334
## 657  0.44680784 0.041228070 0.5176159627 0.066957334
## 1483 0.44470645 0.042105263 0.5110917790 0.066957334
## 1450 0.44707634 0.042105263 0.5131542399 0.068736115
## 597  0.44943983 0.042105263 0.5152000000 0.070532544
## 528  0.44735740 0.042982456 0.5087992871 0.070532544
## 996  0.44528740 0.043859649 0.5024997549 0.070532544
## 184  0.44765071 0.043859649 0.5045474226 0.072346621
## 940  0.44559594 0.044736842 0.4983552632 0.072346621
## 290  0.44355324 0.045614035 0.4922596199 0.072346621
## 765  0.44591614 0.045614035 0.4943072168 0.074178345
## 987  0.44388815 0.046491228 0.4883133058 0.074178345
## 643  0.44624769 0.046491228 0.4903523776 0.076027717
## 1131 0.44860114 0.046491228 0.4923759457 0.077894737
## 990  0.44659033 0.047368421 0.4864876477 0.077894737
## 100  0.44459096 0.048245614 0.4806885928 0.077894737
## 991  0.44260288 0.049122807 0.4749770475 0.077894737
## 596  0.44495832 0.049122807 0.4770043538 0.079779404
## 888  0.44730781 0.049122807 0.4790167838 0.081681719
## 118  0.44533598 0.050000000 0.4734018388 0.081681719
## 520  0.44768214 0.050000000 0.4754050926 0.083601682
## 35   0.45002249 0.050000000 0.4773938712 0.085539292
## 545  0.44806655 0.050877193 0.4718723836 0.085539292
## 302  0.45040364 0.050877193 0.4738521101 0.087494550
## 3    0.44846080 0.051754386 0.4684161592 0.087494550
## 499  0.44652845 0.052631579 0.4630589701 0.087494550
## 1482 0.44460647 0.053508772 0.4577790806 0.087494550
## 1191 0.44269474 0.054385965 0.4525750621 0.087494550
## 1041 0.44503556 0.054385965 0.4545578511 0.089467456
## 79   0.44313618 0.055263158 0.4494315789 0.089467456
## 351  0.44547361 0.055263158 0.4514042026 0.091458009
## 559  0.44358638 0.056140351 0.4463536629 0.091458009
## 1195 0.44170896 0.057017544 0.4413741678 0.091458009
## 1182 0.43984125 0.057894737 0.4364644377 0.091458009
## 761  0.44217949 0.057894737 0.4384319968 0.093466210
## 91   0.44451226 0.057894737 0.4403866810 0.095492059
## 1332 0.44683964 0.057894737 0.4423286032 0.097535555
## 639  0.44916166 0.057894737 0.4442578753 0.099596699
## 355  0.45147840 0.057894737 0.4461746081 0.101675491
## 747  0.44963044 0.058771930 0.4413447380 0.101675491
## 1165 0.44779174 0.059649123 0.4365805349 0.101675491
## 1264 0.44596220 0.060526316 0.4318808558 0.101675491
## 23   0.44414173 0.061403509 0.4272445820 0.101675491
## 893  0.44233024 0.062280702 0.4226706189 0.101675491
## 1230 0.44052763 0.063157895 0.4181578947 0.101675491
## 1243 0.44285071 0.063157895 0.4200730559 0.103771930
## 311  0.44516866 0.063157895 0.4219764971 0.105886017
## 279  0.44748152 0.063157895 0.4238683128 0.108017751
## 296  0.44569304 0.064035088 0.4194185031 0.108017751
## 396  0.44800266 0.064035088 0.4212998970 0.110167134
## 588  0.44622451 0.064912281 0.4169093167 0.110167134
## 1253 0.44853092 0.064912281 0.4187803180 0.112334164
## 1298 0.44676294 0.065789474 0.4144475841 0.112334164
## 1333 0.44906615 0.065789474 0.4163082259 0.114518841
## 241  0.45136450 0.065789474 0.4181578947 0.116721167
## 886  0.45365804 0.065789474 0.4199966751 0.118941140
## 473  0.45594683 0.065789474 0.4218246509 0.121178761
## 482  0.45823089 0.065789474 0.4236419056 0.123434029
## 723  0.46051030 0.065789474 0.4254485219 0.125706945
## 463  0.45876087 0.066666667 0.4211764706 0.125706945
## 1312 0.45701946 0.067543860 0.4169580560 0.125706945
## 1370 0.45929766 0.067543860 0.4187560910 0.127997509
## 349  0.45756584 0.068421053 0.4145911019 0.127997509
## 1045 0.45584185 0.069298246 0.4104778277 0.127997509
## 624  0.45412560 0.070175439 0.4064154469 0.127997509
## 822  0.45241703 0.071052632 0.4024031541 0.127997509
## 717  0.45469710 0.071052632 0.4041925694 0.130305720
## 435  0.45299765 0.071929825 0.4002294913 0.130305720
## 1496 0.45130570 0.072807018 0.3963147474 0.130305720
## 892  0.44962117 0.073684211 0.3924475839 0.130305720
## 325  0.44794400 0.074561404 0.3886272617 0.130305720
## 1125 0.45022551 0.074561404 0.3904056948 0.132631579
## 1476 0.44855702 0.075438596 0.3866307700 0.132631579
## 72   0.45083552 0.075438596 0.3883991013 0.134975086
## 512  0.45310965 0.075438596 0.3901581113 0.137336240
## 195  0.45537946 0.075438596 0.3919078616 0.139715042
## 660  0.45372233 0.076315789 0.3881760352 0.139715042
## 849  0.45598926 0.076315789 0.3899160412 0.142111492
## 5    0.45825196 0.076315789 0.3916469907 0.144525589
## 382  0.45660461 0.077192982 0.3879578947 0.144525589
## 1286 0.45886451 0.077192982 0.3896793022 0.146957334
## 403  0.46112027 0.077192982 0.3913918501 0.149406727
## 650  0.45948254 0.078070175 0.3877445185 0.149406727
## 345  0.45785161 0.078947368 0.3841393286 0.149406727
## 1480 0.45622740 0.079824561 0.3805756579 0.149406727
## 87   0.45460987 0.080701754 0.3770528955 0.149406727
## 167  0.45686684 0.080701754 0.3787535838 0.151873767
## 107  0.45911979 0.080701754 0.3804458330 0.154358455
## 1111 0.45751140 0.081578947 0.3769612206 0.154358455
## 1074 0.45590951 0.082456140 0.3735160616 0.154358455
## 1173 0.45431406 0.083333333 0.3701097853 0.154358455
## 1093 0.45656677 0.083333333 0.3717903580 0.156860791
## 1133 0.45881554 0.083333333 0.3734628183 0.159380774
## 1104 0.45722889 0.084210526 0.3700922365 0.159380774
## 165  0.45947498 0.084210526 0.3717554290 0.161918405
## 1214 0.46171722 0.084210526 0.3734106762 0.164473684
## 749  0.46013924 0.085087719 0.3700750486 0.164473684
## 645  0.46237887 0.085087719 0.3717212168 0.167046611
## 920  0.46461474 0.085087719 0.3733596016 0.169637185
## 80   0.46684687 0.085087719 0.3749902478 0.172245406
## 1510 0.46527863 0.085964912 0.3716876994 0.172245406
## 376  0.46371645 0.086842105 0.3684210526 0.172245406
## 267  0.46216029 0.087719298 0.3651898089 0.172245406
## 1127 0.46439226 0.087719298 0.3668091550 0.174871276
## 750  0.46284318 0.088596491 0.3636114035 0.174871276
## 646  0.46507265 0.088596491 0.3652219477 0.177514793
## 1005 0.46729851 0.088596491 0.3668251508 0.180175958
## 8    0.46952082 0.088596491 0.3684210526 0.182854770
## 1081 0.47173959 0.088596491 0.3700096930 0.185551230
## 1059 0.47020091 0.089473684 0.3668408323 0.185551230
## 736  0.46866799 0.090350877 0.3637054237 0.185551230
## 235  0.47088553 0.090350877 0.3652843448 0.188265338
## 758  0.47309963 0.090350877 0.3668562086 0.190997093
## 140  0.47531030 0.090350877 0.3684210526 0.193746496
## 745  0.47378641 0.091228070 0.3653146394 0.193746496
## 642  0.47599483 0.091228070 0.3668712885 0.196513547
## 495  0.47447764 0.092105263 0.3637958385 0.196513547
## 1105 0.47296599 0.092982456 0.3607521391 0.196513547
## 109  0.47145982 0.093859649 0.3577397717 0.196513547
## 950  0.46995910 0.094736842 0.3547583244 0.196513547
## 571  0.46846378 0.095614035 0.3518073921 0.196513547
## 244  0.46697382 0.096491228 0.3488865762 0.196513547
## 1007 0.46918525 0.096491228 0.3504275106 0.199298246
## 586  0.46770160 0.097368421 0.3475346516 0.199298246
## 476  0.46991076 0.097368421 0.3490673828 0.202100592
## 884  0.47211668 0.097368421 0.3505937085 0.204920585
## 1468 0.47064026 0.098245614 0.3477265944 0.204920585
## 6    0.46916902 0.099122807 0.3448882104 0.204920585
## 1012 0.46770291 0.100000000 0.3420781893 0.204920585
## 250  0.46990857 0.100000000 0.3435928994 0.207758227
## 964  0.47211107 0.100000000 0.3451014340 0.210613516
## 1003 0.47431044 0.100000000 0.3466038212 0.213486453
## 572  0.47285229 0.100877193 0.3438162885 0.213486453
## 201  0.47504953 0.100877193 0.3453108293 0.216377037
## 1513 0.47359734 0.101754386 0.3425489343 0.216377037
## 238  0.47579247 0.101754386 0.3440356946 0.219285269
## 1508 0.47434618 0.102631579 0.3412990102 0.219285269
## 1064 0.47290479 0.103508772 0.3385889446 0.219285269
## 361  0.47146826 0.104385965 0.3359051673 0.219285269
## 219  0.47366315 0.104385965 0.3373804974 0.222211149
## 474  0.47585507 0.104385965 0.3388500548 0.225154677
## 1530 0.47804403 0.104385965 0.3403138644 0.228115852
## 1418 0.47661505 0.105263158 0.3376503476 0.228115852
## 75   0.47880201 0.105263158 0.3391066357 0.231094675
## 1349 0.47737867 0.106140351 0.3364667183 0.231094675
## 1219 0.47596003 0.107017544 0.3338518896 0.231094675
## 804  0.47454605 0.107894737 0.3312618458 0.231094675
## 969  0.47673281 0.107894737 0.3327068788 0.234091145
## 1092 0.47891672 0.107894737 0.3341464358 0.237105263
## 1431 0.47750911 0.108771930 0.3315769575 0.237105263
## 1448 0.47969108 0.108771930 0.3330091743 0.240137029
## 640  0.48187027 0.108771930 0.3344360078 0.243186442
## 44   0.48404669 0.108771930 0.3358574796 0.246253504
## 1268 0.48264626 0.109649123 0.3333063984 0.246253504
## 234  0.48125032 0.110526316 0.3307789474 0.246253504
## 603  0.48342577 0.110526316 0.3321914253 0.249338212
## 1351 0.48203513 0.111403509 0.3296854186 0.249338212
## 317  0.48064891 0.112280702 0.3272024366 0.249338212
## 189  0.48282338 0.112280702 0.3286059158 0.252440569
## 1367 0.48499519 0.112280702 0.3300042807 0.255560573
## 691  0.48361503 0.113157895 0.3275401747 0.255560573
## 897  0.48223918 0.114035088 0.3250984604 0.255560573
## 666  0.48086762 0.114912281 0.3226788785 0.255560573
## 147  0.47950032 0.115789474 0.3202811733 0.255560573
## 152  0.47813724 0.116666667 0.3179050926 0.255560573
## 377  0.47677835 0.117543860 0.3155503879 0.255560573
## 558  0.47542363 0.118421053 0.3132168143 0.255560573
## 190  0.47407305 0.119298246 0.3109041301 0.255560573
## 99   0.47624871 0.119298246 0.3122811255 0.258698225
## 1067 0.47490299 0.120175439 0.3099868643 0.258698225
## 1048 0.47356133 0.121052632 0.3077129804 0.258698225
## 1320 0.47222371 0.121929825 0.3054592431 0.258698225
## 133  0.47439906 0.121929825 0.3068248417 0.261853524
## 1115 0.47306618 0.122807018 0.3045887241 0.261853524
## 1090 0.47523976 0.122807018 0.3059474838 0.265026472
## 1366 0.47741084 0.122807018 0.3073017182 0.268217066
## 205  0.47608339 0.123684211 0.3050807136 0.268217066
## 142  0.47475985 0.124561404 0.3028790774 0.268217066
## 1234 0.47344021 0.125438596 0.3006965944 0.268217066
## 1452 0.47561101 0.125438596 0.3020395789 0.271425309
## 117  0.47777940 0.125438596 0.3033781882 0.274651199
## 1296 0.47646504 0.126315789 0.3012100571 0.274651199
## 710  0.47515450 0.127192982 0.2990605924 0.274651199
## 1311 0.47384776 0.128070175 0.2969295894 0.274651199
## 962  0.47601587 0.128070175 0.2982570346 0.277894737
## 16   0.47471359 0.128947368 0.2961419607 0.277894737
## 521  0.47688004 0.128947368 0.2974628826 0.281155922
## 1374 0.47904416 0.128947368 0.2987796236 0.284434756
## 942  0.47774698 0.129824561 0.2966779742 0.284434756
## 438  0.47645349 0.130701754 0.2945941004 0.284434756
## 1429 0.47516367 0.131578947 0.2925278107 0.284434756
## 760  0.47732755 0.131578947 0.2938335563 0.287731236
## 465  0.47604203 0.132456140 0.2917823291 0.287731236
## 324  0.47476012 0.133333333 0.2897482835 0.287731236
## 600  0.47692308 0.133333333 0.2910453649 0.291045365
## 326  0.47564540 0.134210526 0.2890259676 0.291045365
## 901  0.47437127 0.135087719 0.2870233620 0.291045365
## 406  0.47653332 0.135087719 0.2883118290 0.294377141
## 1011 0.47869317 0.135087719 0.2895964175 0.297726565
## 1171 0.47742387 0.135964912 0.2876057312 0.297726565
## 649  0.47615805 0.136842105 0.2856314340 0.297726565
## 1285 0.47831703 0.136842105 0.2869075403 0.301093636
## 801  0.47705532 0.137719298 0.2849471172 0.301093636
## 768  0.47921280 0.137719298 0.2862171257 0.304478356
## 1144 0.47795516 0.138596491 0.2842703947 0.304478356
## 654  0.47670091 0.139473684 0.2823394984 0.304478356
## 979  0.47545004 0.140350877 0.2804242730 0.304478356
## 1030 0.47420252 0.141228070 0.2785245567 0.304478356
## 427  0.47295833 0.142105263 0.2766401901 0.304478356
## 321  0.47171746 0.142982456 0.2747710153 0.304478356
## 1274 0.47047987 0.143859649 0.2729168769 0.304478356
## 338  0.46924554 0.144736842 0.2710776210 0.304478356
## 1190 0.46801447 0.145614035 0.2692530960 0.304478356
## 1396 0.46678661 0.146491228 0.2674431519 0.304478356
## 37   0.46556197 0.147368421 0.2656476408 0.304478356
## 683  0.46434050 0.148245614 0.2638664165 0.304478356
## 677  0.46312220 0.149122807 0.2620993347 0.304478356
## 1254 0.46528539 0.149122807 0.2633340852 0.307880723
## 1489 0.46407078 0.150000000 0.2615784499 0.307880723
## 94   0.46285929 0.150877193 0.2598366580 0.307880723
## 664  0.46165089 0.151754386 0.2581085709 0.307880723
## 47   0.46044557 0.152631579 0.2563940517 0.307880723
## 1389 0.45924330 0.153508772 0.2546929654 0.307880723
## 358  0.45804407 0.154385965 0.2530051783 0.307880723
## 748  0.45684786 0.155263158 0.2513305585 0.307880723
## 1417 0.45565464 0.156140351 0.2496689758 0.307880723
## 227  0.45782009 0.156140351 0.2508798332 0.311300737
## 943  0.45663036 0.157017544 0.2492285238 0.311300737
## 1065 0.45544358 0.157894737 0.2475899833 0.311300737
## 1006 0.45760810 0.157894737 0.2487925697 0.314738399
## 837  0.45642476 0.158771930 0.2471640443 0.314738399
## 845  0.45858786 0.158771930 0.2483610454 0.318193709
## 371  0.45740793 0.159649123 0.2467424183 0.318193709
## 451  0.45623089 0.160526316 0.2451361667 0.318193709
## 271  0.45505672 0.161403509 0.2435421707 0.318193709
## 437  0.45388540 0.162280702 0.2419603118 0.318193709
## 622  0.45271691 0.163157895 0.2403904727 0.318193709
## 1390 0.45155124 0.164035088 0.2388325378 0.318193709
## 116  0.45038837 0.164912281 0.2372863927 0.318193709
## 254  0.44922828 0.165789474 0.2357519244 0.318193709
## 1327 0.45139338 0.165789474 0.2369250274 0.321666667
## 543  0.45023651 0.166666667 0.2353994627 0.321666667
## 161  0.44908239 0.167543860 0.2338853443 0.321666667
## 1484 0.44793099 0.168421053 0.2323825634 0.321666667
## 854  0.44678230 0.169298246 0.2308910124 0.321666667
## 1151 0.44563631 0.170175439 0.2294105851 0.321666667
## 268  0.44449298 0.171052632 0.2279411765 0.321666667
## 353  0.44665899 0.171052632 0.2290956360 0.325157272
## 692  0.44551876 0.171929825 0.2276344623 0.325157272
## 401  0.44768344 0.171929825 0.2287837128 0.328665525
## 123  0.44654629 0.172807018 0.2273306849 0.328665525
## 788  0.44541175 0.173684211 0.2258883550 0.328665525
## 523  0.44757557 0.173684211 0.2270298025 0.332191425
## 635  0.44973768 0.173684211 0.2281687721 0.335734974
## 561  0.44860662 0.174561404 0.2267317739 0.335734974
## 430  0.44747814 0.175438596 0.2253052630 0.335734974
## 1189 0.44635223 0.176315789 0.2238891425 0.335734974
## 510  0.44522885 0.177192982 0.2224833168 0.335734974
## 682  0.44410801 0.178070175 0.2210876910 0.335734974
## 1458 0.44627061 0.178070175 0.2222111492 0.339296169
## 971  0.44843157 0.178070175 0.2233322551 0.342875013
## 266  0.44731410 0.178947368 0.2219415135 0.342875013
## 868  0.44619912 0.179824561 0.2205607756 0.342875013
## 1245 0.44835931 0.179824561 0.2216743748 0.346471504
## 1116 0.44724723 0.180701754 0.2203009651 0.346471504
## 215  0.44613762 0.181578947 0.2189373731 0.346471504
## 31   0.44503044 0.182456140 0.2175835101 0.346471504
## 944  0.44392570 0.183333333 0.2162392883 0.346471504
## 863  0.44282337 0.184210526 0.2149046209 0.346471504
## 362  0.44172343 0.185087719 0.2135794220 0.346471504
## 1237 0.44062588 0.185964912 0.2122636068 0.346471504
## 1310 0.43953071 0.186842105 0.2109570912 0.346471504
## 496  0.43843789 0.187719298 0.2096597921 0.346471504
## 1091 0.44060025 0.187719298 0.2107478862 0.350085643
## 1381 0.43951018 0.188596491 0.2094571252 0.350085643
## 1263 0.43842243 0.189473684 0.2081754144 0.350085643
## 1292 0.43733699 0.190350877 0.2069026737 0.350085643
## 439  0.43625385 0.191228070 0.2056388238 0.350085643
## 1427 0.43517299 0.192105263 0.2043837863 0.350085643
## 921  0.43409441 0.192982456 0.2031374836 0.350085643
## 819  0.43301809 0.193859649 0.2018998389 0.350085643
## 339  0.43194401 0.194736842 0.2006707763 0.350085643
## 228  0.43087216 0.195614035 0.1994502206 0.350085643
## 272  0.43303652 0.195614035 0.2005129630 0.353717430
## 1241 0.43196727 0.196491228 0.1992982456 0.353717430
## 1449 0.43413054 0.196491228 0.2003565173 0.357366864
## 1412 0.43306387 0.197368421 0.1991475834 0.357366864
## 223  0.43199939 0.198245614 0.1979469332 0.357366864
## 1294 0.43093708 0.199122807 0.1967544953 0.357366864
## 890  0.43310006 0.199122807 0.1978032231 0.361033946
## 1109 0.43204028 0.200000000 0.1966163695 0.361033946
## 1375 0.43420224 0.200000000 0.1976607398 0.364718675
## 1060 0.43314499 0.200877193 0.1964794189 0.364718675
## 239  0.43530595 0.200877193 0.1975194677 0.368421053
## 1010 0.43746555 0.200877193 0.1985577281 0.372141078
## 301  0.43641120 0.201754386 0.1973793914 0.372141078
## 204  0.43856985 0.201754386 0.1984133818 0.375878750
## 907  0.43751799 0.202631579 0.1972404958 0.375878750
## 354  0.43967571 0.202631579 0.1982702509 0.379634070
## 432  0.43862635 0.203508772 0.1971027661 0.379634070
## 258  0.44078316 0.203508772 0.1981283203 0.383407038
## 1479 0.43973628 0.204385965 0.1969661877 0.383407038
## 1337 0.44189221 0.204385965 0.1979875749 0.387197654
## 577  0.44084779 0.205263158 0.1968307462 0.387197654
## 963  0.44300287 0.205263158 0.1978480000 0.391005917
## 850  0.44515671 0.205263158 0.1988635399 0.394831828
## 141  0.44411516 0.206140351 0.1977095811 0.394831828
## 1486 0.44307564 0.207017544 0.1965632177 0.394831828
## 210  0.44203814 0.207894737 0.1954243869 0.394831828
## 734  0.44100266 0.208771930 0.1942930260 0.394831828
## 679  0.43996918 0.209649123 0.1931690733 0.394831828
## 881  0.44212383 0.209649123 0.1941710479 0.398675387
## 452  0.44109274 0.210526316 0.1930520703 0.398675387
## 265  0.44006363 0.211403509 0.1919403787 0.398675387
## 1384 0.43903649 0.212280702 0.1908359133 0.398675387
## 776  0.43801130 0.213157895 0.1897386148 0.398675387
## 46   0.44016637 0.213157895 0.1907295428 0.402536593
## 1315 0.43914352 0.214035088 0.1896369973 0.402536593
## 828  0.43812261 0.214912281 0.1885515020 0.402536593
## 1049 0.43710361 0.215789474 0.1874729996 0.402536593
## 1098 0.43608652 0.216666667 0.1864014332 0.402536593
## 42   0.43507133 0.217543860 0.1853367467 0.402536593
## 798  0.43722725 0.217543860 0.1863144243 0.406415447
## 707  0.43621434 0.218421053 0.1852542245 0.406415447
## 289  0.43520330 0.219298246 0.1842007941 0.406415447
## 1405 0.43419414 0.220175439 0.1831540788 0.406415447
## 949  0.43318682 0.221052632 0.1821140247 0.406415447
## 609  0.43218136 0.221929825 0.1810805782 0.406415447
## 1154 0.43117772 0.222807018 0.1800536866 0.406415447
## 1434 0.43017592 0.223684211 0.1790332975 0.406415447
## 894  0.42917592 0.224561404 0.1780193591 0.406415447
## 1509 0.42817774 0.225438596 0.1770118201 0.406415447
## 606  0.43033603 0.225438596 0.1779671528 0.410311949
## 695  0.42934001 0.226315789 0.1769636480 0.410311949
## 68   0.43149765 0.226315789 0.1779153473 0.414226098
## 727  0.43365428 0.226315789 0.1788657222 0.418157895
## 821  0.43266081 0.227192982 0.1778639379 0.418157895
## 160  0.43166911 0.228070175 0.1768684054 0.418157895
## 662  0.43067917 0.228947368 0.1758790756 0.418157895
## 766  0.43283596 0.228947368 0.1768213266 0.422107339
## 500  0.43184816 0.229824561 0.1758358883 0.422107339
## 74   0.43086209 0.230701754 0.1748565571 0.422107339
## 1492 0.42987776 0.231578947 0.1738832855 0.422107339
## 516  0.43203475 0.231578947 0.1748175102 0.426074432
## 574  0.43105252 0.232456140 0.1738480074 0.426074432
## 1494 0.43007200 0.233333333 0.1728844715 0.426074432
## 259  0.42909318 0.234210526 0.1719268564 0.426074432
## 78   0.42811604 0.235087719 0.1709751164 0.426074432
## 1474 0.42714059 0.235964912 0.1700292062 0.426074432
## 1050 0.42616682 0.236842105 0.1690890808 0.426074432
## 1040 0.42832519 0.236842105 0.1700087073 0.430059172
## 1228 0.42735346 0.237719298 0.1690721026 0.430059172
## 291  0.42638338 0.238596491 0.1681411959 0.430059172
## 178  0.42541494 0.239473684 0.1672159436 0.430059172
## 139  0.42757358 0.239473684 0.1681277947 0.434061559
## 73   0.42660716 0.240350877 0.1672059537 0.434061559
## 357  0.42564237 0.241228070 0.1662896830 0.434061559
## 113  0.42467918 0.242105263 0.1653789405 0.434061559
## 1524 0.42371761 0.242982456 0.1644736842 0.434061559
## 1226 0.42275763 0.243859649 0.1635738726 0.434061559
## 245  0.42179924 0.244736842 0.1626794645 0.434061559
## 524  0.42395934 0.244736842 0.1635770996 0.438081595
## 243  0.42611861 0.244736842 0.1644736842 0.442119277
## 1271 0.42516257 0.245614035 0.1635803036 0.442119277
## 663  0.42420810 0.246491228 0.1626922496 0.442119277
## 1336 0.42636736 0.246491228 0.1635834847 0.446174608
## 1196 0.42541484 0.247368421 0.1626985740 0.446174608
## 318  0.42446387 0.248245614 0.1618189127 0.446174608
## 839  0.42662314 0.248245614 0.1627048537 0.450247586
## 19   0.42567410 0.249122807 0.1618282765 0.450247586
## 638  0.42783302 0.249122807 0.1627110892 0.454338212
## 1084 0.42999120 0.249122807 0.1635928937 0.458446486
## 883  0.43214866 0.249122807 0.1644736842 0.462572407
## 122  0.43430541 0.249122807 0.1653534552 0.466715976
## 249  0.43335953 0.250000000 0.1644736842 0.466715976
## 14   0.43241516 0.250877193 0.1635990566 0.466715976
## 232  0.43147231 0.251754386 0.1627295345 0.466715976
## 938  0.43053097 0.252631579 0.1618650805 0.466715976
## 652  0.42959112 0.253508772 0.1610056575 0.466715976
## 871  0.42865275 0.254385965 0.1601512287 0.466715976
## 518  0.43081131 0.254385965 0.1610176428 0.470877193
## 589  0.42987484 0.255263158 0.1601661236 0.470877193
## 66   0.42893984 0.256140351 0.1593195282 0.470877193
## 277  0.43109857 0.256140351 0.1601809162 0.475056057
## 1066 0.43016546 0.257017544 0.1593371769 0.475056057
## 1457 0.43232399 0.257017544 0.1601956075 0.479252569
## 700  0.43139274 0.257894737 0.1593547052 0.479252569
## 30   0.43355109 0.257894737 0.1602101987 0.483466729
## 298  0.43262172 0.258771930 0.1593721142 0.483466729
## 283  0.43169378 0.259649123 0.1585388191 0.483466729
## 694  0.43076728 0.260526316 0.1577102789 0.483466729
## 848  0.43292632 0.260526316 0.1585588770 0.487698536
## 1287 0.43200167 0.261403509 0.1577330717 0.487698536
## 180  0.43107843 0.262280702 0.1569119558 0.487698536
## 1469 0.43015660 0.263157895 0.1560954958 0.487698536
## 172  0.42923616 0.264035088 0.1552836587 0.487698536
## 421  0.42831712 0.264912281 0.1544764114 0.487698536
## 49   0.42739947 0.265789474 0.1536737216 0.487698536
## 106  0.42648319 0.266666667 0.1528755569 0.487698536
## 1057 0.42556829 0.267543860 0.1520818854 0.487698536
## 579  0.42465474 0.268421053 0.1512926753 0.487698536
## 85   0.42681709 0.268421053 0.1521226870 0.491947991
## 869  0.42590532 0.269298246 0.1513359529 0.491947991
## 22   0.42499491 0.270175439 0.1505536202 0.491947991
## 280  0.42715762 0.270175439 0.1513789474 0.496215094
## 216  0.42624897 0.271052632 0.1505990468 0.496215094
## 807  0.42534166 0.271929825 0.1498234886 0.496215094
## 1413 0.42443568 0.272807018 0.1490522425 0.496215094
## 1044 0.42353102 0.273684211 0.1482852783 0.496215094
## 762  0.42569498 0.273684211 0.1491021249 0.500499844
## 1099 0.42479206 0.274561404 0.1483374953 0.500499844
## 144  0.42389045 0.275438596 0.1475770909 0.500499844
## 300  0.42299014 0.276315789 0.1468208826 0.500499844
## 908  0.42209111 0.277192982 0.1460688412 0.500499844
## 930  0.42119338 0.278070175 0.1453209381 0.500499844
## 681  0.42029692 0.278947368 0.1445771446 0.500499844
## 53   0.42246306 0.278947368 0.1453818369 0.504802242
## 278  0.42156830 0.279824561 0.1446402332 0.504802242
## 1424 0.42067481 0.280701754 0.1439026856 0.504802242
## 621  0.41978258 0.281578947 0.1431691662 0.504802242
## 183  0.41889160 0.282456140 0.1424396477 0.504802242
## 686  0.41800187 0.283333333 0.1417141026 0.504802242
## 1150 0.41711337 0.284210526 0.1409925039 0.504802242
## 995  0.41622610 0.285087719 0.1402748247 0.504802242
## 1029 0.41534006 0.285964912 0.1395610384 0.504802242
## 1215 0.41750931 0.285964912 0.1403500583 0.509122288
## 797  0.41967822 0.285964912 0.1411384563 0.513459981
## 811  0.41879427 0.286842105 0.1404248262 0.513459981
## 1364 0.42096330 0.286842105 0.1412107550 0.517815322
## 982  0.42008101 0.287719298 0.1404991326 0.517815322
## 1169 0.41919993 0.288596491 0.1397913330 0.517815322
## 38   0.41832005 0.289473684 0.1390873305 0.517815322
## 847  0.42049012 0.289473684 0.1398671559 0.522188311
## 275  0.41961188 0.290350877 0.1391651044 0.522188311
## 394  0.42178213 0.290350877 0.1399425150 0.526578947
## 9    0.42090554 0.291228070 0.1392424038 0.526578947
## 470  0.42003012 0.292105263 0.1385460194 0.526578947
## 1174 0.41915588 0.292982456 0.1378533371 0.526578947
## 274  0.42132725 0.292982456 0.1386247565 0.530987231
## 1130 0.42349838 0.292982456 0.1393955967 0.535413163
## 1047 0.42262623 0.293859649 0.1387030176 0.535413163
## 166  0.42175525 0.294736842 0.1380140969 0.535413163
## 630  0.42088542 0.295614035 0.1373288107 0.535413163
## 514  0.42305774 0.295614035 0.1380937521 0.539856742
## 1526 0.42522987 0.295614035 0.1388581286 0.544317969
## 803  0.42436213 0.296491228 0.1381729298 0.544317969
## 1499 0.42349554 0.297368421 0.1374913231 0.544317969
## 557  0.42263009 0.298245614 0.1368132848 0.544317969
## 419  0.42176577 0.299122807 0.1361387917 0.544317969
## 41   0.42393964 0.299122807 0.1368956193 0.548796844
## 220  0.42611336 0.299122807 0.1376519043 0.553293367
## 1170 0.42525113 0.300000000 0.1369774658 0.553293367
## 373  0.42439002 0.300877193 0.1363065317 0.553293367
## 578  0.42353003 0.301754386 0.1356390792 0.553293367
## 303  0.42267114 0.302631579 0.1349750856 0.553293367
## 659  0.42181335 0.303508772 0.1343145287 0.553293367
## 221  0.42095666 0.304385965 0.1336573861 0.553293367
## 336  0.42010105 0.305263158 0.1330036359 0.553293367
## 436  0.41924654 0.306140351 0.1323532560 0.553293367
## 334  0.41839309 0.307017544 0.1317062249 0.553293367
## 422  0.41754073 0.307894737 0.1310625210 0.553293367
## 1069 0.41668943 0.308771930 0.1304221229 0.553293367
## 230  0.41583919 0.309649123 0.1297850095 0.553293367
## 922  0.41499001 0.310526316 0.1291511596 0.553293367
## 57   0.41717001 0.310526316 0.1298847325 0.557807537
## 187  0.41632237 0.311403509 0.1292524398 0.557807537
## 1132 0.41850281 0.311403509 0.1299838854 0.562339354
## 992  0.41765672 0.312280702 0.1293531427 0.562339354
## 1359 0.41681167 0.313157895 0.1287256071 0.562339354
## 415  0.41596765 0.314035088 0.1281012583 0.562339354
## 817  0.41512466 0.314912281 0.1274800761 0.562339354
## 605  0.41730709 0.314912281 0.1282044214 0.566888820
## 966  0.41948951 0.314912281 0.1289283433 0.571455933
## 359  0.41864856 0.315789474 0.1283070029 0.571455933
## 742  0.41780863 0.316666667 0.1276887948 0.571455933
## 181  0.41696972 0.317543860 0.1270736994 0.571455933
## 1211 0.41915370 0.317543860 0.1277922765 0.576040693
## 453  0.41831631 0.318421053 0.1271786411 0.576040693
## 1316 0.41747992 0.319298246 0.1265680822 0.576040693
## 790  0.41664453 0.320175439 0.1259605805 0.576040693
## 404  0.41883011 0.320175439 0.1266738758 0.580643102
## 360  0.41799624 0.321052632 0.1260677948 0.580643102
## 226  0.41716336 0.321929825 0.1254647357 0.580643102
## 570  0.41633145 0.322807018 0.1248646798 0.580643102
## 1401 0.41550053 0.323684211 0.1242676084 0.580643102
## 708  0.41467057 0.324561404 0.1236735029 0.580643102
## 1290 0.41384159 0.325438596 0.1230823450 0.580643102
## 713  0.41301356 0.326315789 0.1224941165 0.580643102
## 800  0.41218649 0.327192982 0.1219087992 0.580643102
## 1454 0.41437639 0.327192982 0.1226088932 0.585263158
## 1015 0.41355081 0.328070175 0.1220248813 0.585263158
## 217  0.41272617 0.328947368 0.1214437478 0.585263158
## 1280 0.41190248 0.329824561 0.1208654749 0.585263158
## 896  0.41107972 0.330701754 0.1202900452 0.585263158
## 1184 0.41025789 0.331578947 0.1197174411 0.585263158
## 916  0.40943700 0.332456140 0.1191476453 0.585263158
## 1297 0.40861702 0.333333333 0.1185806409 0.585263158
## 1362 0.40779796 0.334210526 0.1180164106 0.585263158
## 282  0.40999230 0.334210526 0.1187035875 0.589900862
## 994  0.40917469 0.335087719 0.1181405561 0.589900862
## 711  0.40835800 0.335964912 0.1175802681 0.589900862
## 21   0.40754220 0.336842105 0.1170227069 0.589900862
## 1068 0.40672731 0.337719298 0.1164678559 0.589900862
## 1467 0.40591331 0.338596491 0.1159156987 0.589900862
## 1252 0.40811056 0.338596491 0.1165948443 0.594556213
## 945  0.40729800 0.339473684 0.1160438270 0.594556213
## 1273 0.40648632 0.340350877 0.1154954740 0.594556213
## 200  0.40567553 0.341228070 0.1149497693 0.594556213
## 492  0.40486561 0.342105263 0.1144066969 0.594556213
## 1409 0.40405656 0.342982456 0.1138662410 0.594556213
## 617  0.40324837 0.343859649 0.1133283859 0.594556213
## 151  0.40244105 0.344736842 0.1127931162 0.594556213
## 698  0.40163458 0.345614035 0.1122604162 0.594556213
## 941  0.40082897 0.346491228 0.1117302707 0.594556213
## 548  0.40002420 0.347368421 0.1112026645 0.594556213
## 1269 0.39922027 0.348245614 0.1106775823 0.594556213
## 486  0.39841719 0.349122807 0.1101550093 0.594556213
## 98   0.40062136 0.349122807 0.1108156932 0.599229212
## 1123 0.40282583 0.349122807 0.1114761694 0.603919859
## 93   0.40202471 0.350000000 0.1109531028 0.603919859
## 1388 0.40122442 0.350877193 0.1104325215 0.603919859
## 527  0.40042496 0.351754386 0.1099144107 0.603919859
## 1095 0.39962631 0.352631579 0.1093987558 0.603919859
## 1160 0.39882848 0.353508772 0.1088855425 0.603919859
## 584  0.39803147 0.354385965 0.1083747563 0.603919859
## 159  0.40023971 0.354385965 0.1090261506 0.608628153
## 305  0.39944408 0.355263158 0.1085163093 0.608628153
## 330  0.39864926 0.356140351 0.1080088696 0.608628153
## 316  0.39785523 0.357017544 0.1075038175 0.608628153
## 471  0.39706200 0.357894737 0.1070011390 0.608628153
## 1001 0.39927295 0.357894737 0.1076465154 0.613354095
## 533  0.39848110 0.358771930 0.1071447456 0.613354095
## 1163 0.40069302 0.358771930 0.1077885072 0.618097685
## 1464 0.39990256 0.359649123 0.1072876437 0.618097685
## 197  0.39911287 0.360526316 0.1067891181 0.618097685
## 802  0.39832397 0.361403509 0.1062929171 0.618097685
## 1438 0.39753584 0.362280702 0.1057990271 0.618097685
## 464  0.39674848 0.363157895 0.1053074348 0.618097685
## 1490 0.39596189 0.364035088 0.1048181268 0.618097685
## 10   0.39517606 0.364912281 0.1043310901 0.618097685
## 728  0.39439099 0.365789474 0.1038463115 0.618097685
## 1423 0.39360667 0.366666667 0.1033637781 0.618097685
## 1240 0.39282310 0.367543860 0.1028834770 0.618097685
## 556  0.39204028 0.368421053 0.1024053952 0.618097685
## 270  0.39125820 0.369298246 0.1019295202 0.618097685
## 1323 0.39047686 0.370175439 0.1014558393 0.618097685
## 841  0.39269708 0.370175439 0.1020809665 0.622858922
## 1232 0.39191708 0.371052632 0.1016080666 0.622858922
## 564  0.39113781 0.371929825 0.1011373387 0.622858922
## 20   0.39035926 0.372807018 0.1006687703 0.622858922
## 644  0.39258184 0.372807018 0.1012896116 0.627637808
## 1284 0.39480494 0.372807018 0.1019103540 0.632434340
## 157  0.39702859 0.372807018 0.1025309917 0.637248521
## 1408 0.39625265 0.373684211 0.1020604241 0.637248521
## 457  0.39547743 0.374561404 0.1015920000 0.637248521
## 910  0.39470293 0.375438596 0.1011257072 0.637248521
## 154  0.39692905 0.375438596 0.1017421255 0.642080349
## 1124 0.39915574 0.375438596 0.1023584421 0.646929825
## 699  0.39838325 0.376315789 0.1018915452 0.646929825
## 13   0.40061119 0.376315789 0.1025063998 0.651796948
## 129  0.39984006 0.377192982 0.1020402638 0.651796948
## 1282 0.39906964 0.378070175 0.1015762315 0.651796948
## 873  0.39829992 0.378947368 0.1011142911 0.651796948
## 96   0.39676258 0.380701754 0.1001966395 0.651796948
## 974  0.39676258 0.380701754 0.1001966395 0.651796948
## 384  0.39599494 0.381578947 0.0997409050 0.651796948
## 1515 0.39522800 0.382456140 0.0992872161 0.651796948
## 1379 0.39446174 0.383333333 0.0988355615 0.651796948
## 939  0.39369615 0.384210526 0.0983859298 0.651796948
## 292  0.39293124 0.385087719 0.0979383098 0.651796948
## 1114 0.39216701 0.385964912 0.0974926904 0.651796948
## 805  0.39140344 0.386842105 0.0970490605 0.651796948
## 815  0.39064053 0.387719298 0.0966074090 0.651796948
## 51   0.38987828 0.388596491 0.0961677251 0.651796948
## 1440 0.38911669 0.389473684 0.0957299980 0.651796948
## 1179 0.38835576 0.390350877 0.0952942167 0.651796948
## 88   0.39059507 0.390350877 0.0958877296 0.656681719
## 1394 0.38983546 0.391228070 0.0954525792 0.656681719
## 63   0.39207618 0.391228070 0.0960447510 0.661584138
## 186  0.39131791 0.392105263 0.0956102306 0.661584138
## 1080 0.39056028 0.392982456 0.0951776295 0.661584138
## 554  0.39280313 0.392982456 0.0957671754 0.666504204
## 369  0.39204684 0.393859649 0.0953351954 0.666504204
## 696  0.39129119 0.394736842 0.0949051165 0.666504204
## 310  0.39053617 0.395614035 0.0944769283 0.666504204
## 781  0.38978178 0.396491228 0.0940506205 0.666504204
## 297  0.38902801 0.397368421 0.0936261829 0.666504204
## 522  0.39127517 0.397368421 0.0942092979 0.671441918
## 1139 0.39052274 0.398245614 0.0937854499 0.671441918
## 902  0.38977093 0.399122807 0.0933634545 0.671441918
## 1403 0.38901973 0.400000000 0.0929433017 0.671441918
## 585  0.38826915 0.400877193 0.0925249815 0.671441918
## 957  0.38751917 0.401754386 0.0921084841 0.671441918
## 935  0.38676980 0.402631579 0.0916937995 0.671441918
## 576  0.38602102 0.403508772 0.0912809182 0.671441918
## 58   0.38527285 0.404385965 0.0908698303 0.671441918
## 1078 0.38452527 0.405263158 0.0904605263 0.671441918
## 59   0.38677976 0.405263158 0.0910323129 0.676397280
## 320  0.38603350 0.406140351 0.0906235401 0.676397280
## 872  0.38528783 0.407017544 0.0902165346 0.676397280
## 299  0.38454274 0.407894737 0.0898112870 0.676397280
## 539  0.38379824 0.408771930 0.0894077880 0.676397280
## 1304 0.38305430 0.409649123 0.0890060281 0.676397280
## 1070 0.38231095 0.410526316 0.0886059983 0.676397280
## 751  0.38156816 0.411403509 0.0882076891 0.676397280
## 1387 0.38082593 0.412280702 0.0878110916 0.676397280
## 1149 0.38008427 0.413157895 0.0874161967 0.676397280
## 185  0.37934317 0.414035088 0.0870229952 0.676397280
## 1197 0.37860262 0.414912281 0.0866314783 0.676397280
## 1295 0.37786263 0.415789474 0.0862416370 0.676397280
## 891  0.37712318 0.416666667 0.0858534626 0.676397280
## 364  0.37638427 0.417543860 0.0854669461 0.676397280
## 757  0.37865013 0.417543860 0.0860216233 0.681370290
## 851  0.37791253 0.418421053 0.0856355526 0.681370290
## 81   0.37717547 0.419298246 0.0852511251 0.681370290
## 1046 0.37643894 0.420175439 0.0848683320 0.681370290
## 208  0.37870810 0.420175439 0.0854194712 0.686360947
## 478  0.38097827 0.420175439 0.0859706694 0.691369252
## 1317 0.38024383 0.421052632 0.0855871213 0.691369252
## 1058 0.37950991 0.421929825 0.0852051956 0.691369252
## 542  0.37877653 0.422807018 0.0848248839 0.691369252
## 493  0.37804367 0.423684211 0.0844461777 0.691369252
## 1456 0.38031803 0.423684211 0.0849927037 0.696395204
## 970  0.38259347 0.423684211 0.0855392920 0.701438804
## 418  0.38186272 0.424561404 0.0851598359 0.701438804
## 560  0.38113250 0.425438596 0.0847819737 0.701438804
## 525  0.38040280 0.426315789 0.0844056970 0.701438804
## 895  0.37967361 0.427192982 0.0840309976 0.701438804
## 899  0.37894493 0.428070175 0.0836578675 0.701438804
## 595  0.38122550 0.428070175 0.0841986951 0.706500052
## 124  0.38049815 0.428947368 0.0838259698 0.706500052
## 127  0.37977130 0.429824561 0.0834548000 0.706500052
## 1354 0.37904496 0.430701754 0.0830851776 0.706500052
## 1348 0.37831911 0.431578947 0.0827170948 0.706500052
## 632  0.37759376 0.432456140 0.0823505436 0.706500052
## 827  0.37686890 0.433333333 0.0819855161 0.706500052
## 15   0.37614453 0.434210526 0.0816220046 0.706500052
## 344  0.37542065 0.435087719 0.0812600013 0.706500052
## 50   0.37469725 0.435964912 0.0808994985 0.706500052
## 779  0.37397433 0.436842105 0.0805404885 0.706500052
## 202  0.37325188 0.437719298 0.0801829637 0.706500052
## 633  0.37252991 0.438596491 0.0798269166 0.706500052
## 1159 0.37180840 0.439473684 0.0794723396 0.706500052
## 1039 0.37108736 0.440350877 0.0791192253 0.706500052
## 1404 0.37036679 0.441228070 0.0787675662 0.706500052
## 905  0.36964667 0.442105263 0.0784173550 0.706500052
## 1146 0.36892700 0.442982456 0.0780685843 0.706500052
## 459  0.36820779 0.443859649 0.0777212468 0.706500052
## 52   0.37050463 0.443859649 0.0782417582 0.711578947
## 1256 0.36978672 0.444736842 0.0778947368 0.711578947
## 248  0.36906927 0.445614035 0.0775491367 0.711578947
## 732  0.36835226 0.446491228 0.0772049505 0.711578947
## 669  0.36763569 0.447368421 0.0768621712 0.711578947
## 959  0.36993728 0.447368421 0.0773783902 0.716675491
## 1261 0.36922202 0.448245614 0.0770359133 0.716675491
## 365  0.36850720 0.449122807 0.0766948315 0.716675491
## 688  0.36779281 0.450000000 0.0763551379 0.716675491
## 880  0.37009837 0.450000000 0.0768682081 0.721789681
## 824  0.36938530 0.450877193 0.0765288081 0.721789681
## 490  0.36867266 0.451754386 0.0761907847 0.721789681
## 314  0.37098138 0.451754386 0.0767018192 0.726921520
## 97   0.37329147 0.451754386 0.0772129855 0.732071006
## 573  0.37258106 0.452631579 0.0768741748 0.732071006
## 173  0.37187109 0.453508772 0.0765367315 0.732071006
## 389  0.37116153 0.454385965 0.0762006490 0.732071006
## 134  0.37045240 0.455263158 0.0758659204 0.732071006
## 1156 0.36974369 0.456140351 0.0755325391 0.732071006
## 1218 0.36903539 0.457017544 0.0752004984 0.732071006
## 786  0.36832750 0.457894737 0.0748697917 0.732071006
## 1411 0.36762001 0.458771930 0.0745404123 0.732071006
## 137  0.36691293 0.459649123 0.0742123538 0.732071006
## 284  0.36620626 0.460526316 0.0738856096 0.732071006
## 388  0.36549998 0.461403509 0.0735601733 0.732071006
## 1193 0.36479409 0.462280702 0.0732360384 0.732071006
## 162  0.36408860 0.463157895 0.0729131986 0.732071006
## 673  0.36338349 0.464035088 0.0725916474 0.732071006
## 1421 0.36267877 0.464912281 0.0722713787 0.732071006
## 926  0.36197443 0.465789474 0.0719523860 0.732071006
## 1148 0.36127047 0.466666667 0.0716346632 0.732071006
## 778  0.36056689 0.467543860 0.0713182041 0.732071006
## 309  0.35986368 0.468421053 0.0710030024 0.732071006
## 1369 0.36219298 0.468421053 0.0714942692 0.737238140
## 626  0.36149110 0.469298246 0.0711792873 0.737238140
## 472  0.36078959 0.470175439 0.0708655528 0.737238140
## 569  0.36008844 0.471052632 0.0705530598 0.737238140
## 658  0.35938766 0.471929825 0.0702418021 0.737238140
## 343  0.35868724 0.472807018 0.0699317739 0.737238140
## 706  0.35798717 0.473684211 0.0696229691 0.737238140
## 1259 0.35728745 0.474561404 0.0693153819 0.737238140
## 1108 0.35658808 0.475438596 0.0690090063 0.737238140
## 914  0.35588906 0.476315789 0.0687038365 0.737238140
## 36   0.35822875 0.476315789 0.0691860936 0.742422921
## 1340 0.35753106 0.477192982 0.0688811144 0.742422921
## 426  0.35683372 0.478070175 0.0685773316 0.742422921
## 501  0.35613672 0.478947368 0.0682747394 0.742422921
## 1430 0.35544005 0.479824561 0.0679733321 0.742422921
## 155  0.35474372 0.480701754 0.0676731040 0.742422921
## 264  0.35404772 0.481578947 0.0673740495 0.742422921
## 441  0.35335205 0.482456140 0.0670761630 0.742422921
## 565  0.35265670 0.483333333 0.0667794388 0.742422921
## 209  0.35500611 0.483333333 0.0672538913 0.747625350
## 623  0.35431211 0.484210526 0.0669573342 0.747625350
## 687  0.35361842 0.485087719 0.0666619305 0.747625350
## 255  0.35292505 0.485964912 0.0663676747 0.747625350
## 1293 0.35223200 0.486842105 0.0660745614 0.747625350
## 925  0.35153925 0.487719298 0.0657825852 0.747625350
## 980  0.35084682 0.488596491 0.0654917406 0.747625350
## 1477 0.35015469 0.489473684 0.0652020223 0.747625350
## 188  0.35251311 0.489473684 0.0656698120 0.752845427
## 481  0.35487334 0.489473684 0.0661378179 0.758083152
## 158  0.35418362 0.490350877 0.0658472774 0.758083152
## 469  0.35349421 0.491228070 0.0655578567 0.758083152
## 1495 0.35280510 0.492105263 0.0652695506 0.758083152
## 1135 0.35211628 0.492982456 0.0649823537 0.758083152
## 12   0.35448262 0.492982456 0.0654467106 0.763338524
## 806  0.35379518 0.493859649 0.0651596579 0.763338524
## 535  0.35310804 0.494736842 0.0648737061 0.763338524
## 130  0.35547843 0.494736842 0.0653363650 0.768611544
## 1309 0.35479267 0.495614035 0.0650505553 0.768611544
## 261  0.35716606 0.495614035 0.0655124778 0.773902211
## 381  0.35648171 0.496491228 0.0652268113 0.773902211
## 446  0.35579765 0.497368421 0.0649422344 0.773902211
## 1393 0.35511387 0.498245614 0.0646587420 0.773902211
## 448  0.35443039 0.499122807 0.0643763291 0.773902211
## 513  0.35681019 0.499122807 0.0648346868 0.779210526
## 1023 0.35612811 0.500000000 0.0645524090 0.779210526
## 1000 0.35851103 0.500000000 0.0650100461 0.784536489
## 417  0.35783038 0.500877193 0.0647279045 0.784536489
## 367  0.35715002 0.501754386 0.0644468314 0.784536489
## 460  0.35646993 0.502631579 0.0641668217 0.784536489
## 1166 0.35579012 0.503508772 0.0638878707 0.784536489
## 64   0.35511058 0.504385965 0.0636099733 0.784536489
## 948  0.35443132 0.505263158 0.0633331247 0.784536489
## 631  0.35375233 0.506140351 0.0630573201 0.784536489
## 103  0.35307360 0.507017544 0.0627825547 0.784536489
## 611  0.35239513 0.507894737 0.0625088237 0.784536489
## 1518 0.35171692 0.508771930 0.0622361223 0.784536489
## 1376 0.35411350 0.508771930 0.0626847306 0.789880100
## 936  0.35343673 0.509649123 0.0624121405 0.789880100
## 1441 0.35276022 0.510526316 0.0621405726 0.789880100
## 739  0.35208396 0.511403509 0.0618700222 0.789880100
## 1516 0.35140795 0.512280702 0.0616004845 0.789880100
## 1392 0.35073219 0.513157895 0.0613319550 0.789880100
## 1363 0.35005668 0.514035088 0.0610644291 0.789880100
## 1267 0.34938140 0.514912281 0.0607979021 0.789880100
## 1086 0.35178852 0.514912281 0.0612403999 0.795241358
## 379  0.35111471 0.515789474 0.0609739693 0.795241358
## 889  0.35352525 0.515789474 0.0614158097 0.800620264
## 28   0.35285290 0.516666667 0.0611494766 0.800620264
## 1188 0.35218080 0.517543860 0.0608841327 0.800620264
## 372  0.35150893 0.518421053 0.0606197735 0.800620264
## 206  0.35083729 0.519298246 0.0603563946 0.800620264
## 260  0.35016589 0.520175439 0.0600939915 0.800620264
## 668  0.34949471 0.521052632 0.0598325598 0.800620264
## 1028 0.34882376 0.521929825 0.0595720951 0.800620264
## 620  0.34815303 0.522807018 0.0593125930 0.800620264
## 1491 0.34748251 0.523684211 0.0590540493 0.800620264
## 341  0.34681222 0.524561404 0.0587964595 0.800620264
## 253  0.34614213 0.525438596 0.0585398194 0.800620264
## 615  0.34547226 0.526315789 0.0582841248 0.800620264
## 1002 0.34790017 0.526315789 0.0587156166 0.806016817
## 287  0.34723179 0.527192982 0.0584599932 0.806016817
## 641  0.34966336 0.527192982 0.0588908707 0.811431018
## 563  0.34899649 0.528070175 0.0586353197 0.811431018
## 783  0.34832983 0.528947368 0.0583807052 0.811431018
## 1134 0.35076642 0.528947368 0.0588101066 0.816862867
## 489  0.35010128 0.529824561 0.0585555633 0.816862867
## 1    0.34943635 0.530701754 0.0583019500 0.816862867
## 1377 0.34877162 0.531578947 0.0580492624 0.816862867
## 1255 0.35121465 0.531578947 0.0584763420 0.822312364
## 431  0.35055146 0.532456140 0.0582237223 0.822312364
## 194  0.34988847 0.533333333 0.0579720219 0.822312364
## 1158 0.34922569 0.534210526 0.0577212368 0.822312364
## 86   0.34856310 0.535087719 0.0574713629 0.822312364
## 370  0.34790070 0.535964912 0.0572223962 0.822312364
## 375  0.34723849 0.536842105 0.0569743327 0.822312364
## 177  0.34657647 0.537719298 0.0567271684 0.822312364
## 1406 0.34591464 0.538596491 0.0564808992 0.822312364
## 498  0.34525298 0.539473684 0.0562355214 0.822312364
## 1435 0.34459151 0.540350877 0.0559910308 0.822312364
## 70   0.34393021 0.541228070 0.0557474237 0.822312364
## 67   0.34326908 0.542105263 0.0555046961 0.822312364
## 928  0.34260812 0.542982456 0.0552628442 0.822312364
## 269  0.34194733 0.543859649 0.0550218642 0.822312364
## 315  0.34128670 0.544736842 0.0547817521 0.822312364
## 984  0.34062623 0.545614035 0.0545425043 0.822312364
## 198  0.34309387 0.545614035 0.0549564145 0.827779508
## 1281 0.34243498 0.546491228 0.0547172032 0.827779508
## 568  0.34177625 0.547368421 0.0544788503 0.827779508
## 236  0.34111767 0.548245614 0.0542413520 0.827779508
## 829  0.34045925 0.549122807 0.0540047047 0.827779508
## 387  0.33980098 0.550000000 0.0537689046 0.827779508
## 56   0.33914285 0.550877193 0.0535339480 0.827779508
## 965  0.34162184 0.550877193 0.0539432238 0.833264300
## 1027 0.34096531 0.551754386 0.0537082951 0.833264300
## 1493 0.34030893 0.552631579 0.0534742043 0.833264300
## 1319 0.33965270 0.553508772 0.0532409477 0.833264300
## 1185 0.33899660 0.554385965 0.0530085219 0.833264300
## 818  0.33834064 0.555263158 0.0527769231 0.833264300
## 1051 0.33768482 0.556140351 0.0525461478 0.833264300
## 537  0.33702912 0.557017544 0.0523161925 0.833264300
## 1213 0.33952127 0.557017544 0.0527201093 0.838766739
## 1283 0.34201630 0.557017544 0.0531243111 0.844286827
## 820  0.34136375 0.557894737 0.0528935764 0.844286827
## 1238 0.34071134 0.558771930 0.0526636579 0.844286827
## 1419 0.34005905 0.559649123 0.0524345521 0.844286827
## 1017 0.33940690 0.560526316 0.0522062556 0.844286827
## 356  0.33875487 0.561403509 0.0519787649 0.844286827
## 567  0.33810296 0.562280702 0.0517520764 0.844286827
## 1308 0.33745117 0.563157895 0.0515261868 0.844286827
## 149  0.33679950 0.564035088 0.0513010927 0.844286827
## 755  0.33614794 0.564912281 0.0510767906 0.844286827
## 629  0.33549650 0.565789474 0.0508532772 0.844286827
## 1514 0.33484516 0.566666667 0.0506305490 0.844286827
## 214  0.33419392 0.567543860 0.0504086029 0.844286827
## 1313 0.33354279 0.568421053 0.0501874353 0.844286827
## 1301 0.33289175 0.569298246 0.0499670431 0.844286827
## 1302 0.33224081 0.570175439 0.0497474228 0.844286827
## 932  0.33158997 0.571052632 0.0495285713 0.844286827
## 212  0.33093921 0.571929825 0.0493104853 0.844286827
## 1052 0.33028854 0.572807018 0.0490931615 0.844286827
## 263  0.32963795 0.573684211 0.0488765967 0.844286827
## 71   0.32898744 0.574561404 0.0486607877 0.844286827
## 363  0.32833701 0.575438596 0.0484457312 0.844286827
## 294  0.32768665 0.576315789 0.0482314241 0.844286827
## 906  0.32703637 0.577192982 0.0480178633 0.844286827
## 1355 0.32638615 0.578070175 0.0478050456 0.844286827
## 937  0.32573600 0.578947368 0.0475929679 0.844286827
## 785  0.32508591 0.579824561 0.0473816269 0.844286827
## 1227 0.32443588 0.580701754 0.0471710198 0.844286827
## 684  0.32378590 0.581578947 0.0469611432 0.844286827
## 65   0.32313598 0.582456140 0.0467519943 0.844286827
## 740  0.32248610 0.583333333 0.0465435699 0.844286827
## 45   0.32183627 0.584210526 0.0463358670 0.844286827
## 656  0.32118649 0.585087719 0.0461288826 0.844286827
## 599  0.32373584 0.585087719 0.0465087123 0.849824561
## 1239 0.32308779 0.585964912 0.0463016994 0.849824561
## 864  0.32243978 0.586842105 0.0460954004 0.849824561
## 823  0.32179181 0.587719298 0.0458898125 0.849824561
## 1500 0.32114388 0.588596491 0.0456849328 0.849824561
## 1473 0.32049598 0.589473684 0.0454807581 0.849824561
## 33   0.31984812 0.590350877 0.0452772857 0.849824561
## 1372 0.32241117 0.590350877 0.0456530016 0.855379944
## 1461 0.32176507 0.591228070 0.0454494949 0.855379944
## 400  0.32433334 0.591228070 0.0458248015 0.860952974
## 1373 0.32690512 0.591228070 0.0462004283 0.866543652
## 562  0.32626260 0.592105263 0.0459961591 0.866543652
## 242  0.32562012 0.592982456 0.0457925880 0.866543652
## 1096 0.32497767 0.593859649 0.0455897121 0.866543652
## 898  0.32433525 0.594736842 0.0453875285 0.866543652
## 115  0.32369287 0.595614035 0.0451860343 0.866543652
## 1055 0.32305051 0.596491228 0.0449852268 0.866543652
## 442  0.32240817 0.597368421 0.0447851031 0.866543652
## 374  0.32176585 0.598245614 0.0445856604 0.866543652
## 1062 0.32112355 0.599122807 0.0443868958 0.866543652
## 1176 0.32048127 0.600000000 0.0441888066 0.866543652
## 1443 0.31983899 0.600877193 0.0439913901 0.866543652
## 1433 0.31919672 0.601754386 0.0437946434 0.866543652
## 795  0.31855445 0.602631579 0.0435985638 0.866543652
## 870  0.31791219 0.603508772 0.0434031486 0.866543652
## 1505 0.31726992 0.604385965 0.0432083951 0.866543652
## 857  0.31662765 0.605263158 0.0430143005 0.866543652
## 912  0.31598536 0.606140351 0.0428208622 0.866543652
## 90   0.31534307 0.607017544 0.0426280775 0.866543652
## 1324 0.31470076 0.607894737 0.0424359437 0.866543652
## 981  0.31405843 0.608771930 0.0422444582 0.866543652
## 1026 0.31341608 0.609649123 0.0420536183 0.866543652
## 772  0.31277370 0.610526316 0.0418634214 0.866543652
## 1466 0.31213130 0.611403509 0.0416738649 0.866543652
## 1487 0.31148886 0.612280702 0.0414849462 0.866543652
## 1382 0.31084639 0.613157895 0.0412966628 0.866543652
## 1503 0.31020388 0.614035088 0.0411090119 0.866543652
## 138  0.30956133 0.614912281 0.0409219912 0.866543652
## 410  0.30891874 0.615789474 0.0407355979 0.866543652
## 808  0.30827609 0.616666667 0.0405498297 0.866543652
## 1307 0.30763339 0.617543860 0.0403646839 0.866543652
## 1507 0.30699064 0.618421053 0.0401801580 0.866543652
## 879  0.30962462 0.618421053 0.0405342092 0.872151978
## 1470 0.30898381 0.619298246 0.0403496178 0.872151978
## 540  0.30834295 0.620175439 0.0401656429 0.872151978
## 1138 0.30770203 0.621052632 0.0399822818 0.872151978
## 1385 0.30706105 0.621929825 0.0397995322 0.872151978
## 1460 0.30642000 0.622807018 0.0396173916 0.872151978
## 1244 0.30906821 0.622807018 0.0399683932 0.877777951
## 164  0.31172061 0.622807018 0.0403197423 0.883421572
## 1299 0.31108363 0.623684211 0.0401368593 0.883421572
## 1142 0.31044659 0.624561404 0.0399545832 0.883421572
## 1168 0.30980948 0.625438596 0.0397729116 0.883421572
## 826  0.30917232 0.626315789 0.0395918421 0.883421572
## 697  0.30853508 0.627192982 0.0394113722 0.883421572
## 612  0.30789778 0.628070175 0.0392314996 0.883421572
## 1224 0.30726041 0.628947368 0.0390522219 0.883421572
## 1471 0.30662295 0.629824561 0.0388735367 0.883421572
## 955  0.30598542 0.630701754 0.0386954416 0.883421572
## 716  0.30866115 0.630701754 0.0390411271 0.889082840
## 536  0.30802570 0.631578947 0.0388629593 0.889082840
## 447  0.30739016 0.632456140 0.0386853784 0.889082840
## 1145 0.30675455 0.633333333 0.0385083820 0.889082840
## 1187 0.30611884 0.634210526 0.0383319677 0.889082840
## 383  0.30548305 0.635087719 0.0381561334 0.889082840
## 844  0.30817420 0.635087719 0.0384988825 0.894761756
## 1344 0.30754054 0.635964912 0.0383229729 0.894761756
## 1305 0.30690679 0.636842105 0.0381476400 0.894761756
## 1326 0.30960698 0.636842105 0.0384894357 0.900458320
## 581  0.30897540 0.637719298 0.0383140278 0.900458320
## 1257 0.30834373 0.638596491 0.0381391934 0.900458320
## 105  0.30771198 0.639473684 0.0379649303 0.900458320
## 416  0.30708013 0.640350877 0.0377912360 0.900458320
## 551  0.30644819 0.641228070 0.0376181086 0.900458320
## 286  0.30581614 0.642105263 0.0374455456 0.900458320
## 1209 0.30853478 0.642105263 0.0377838179 0.906172532
## 213  0.30790496 0.642982456 0.0376111768 0.906172532
## 875  0.30727505 0.643859649 0.0374390970 0.906172532
## 466  0.30664504 0.644736842 0.0372675765 0.906172532
## 1386 0.30601492 0.645614035 0.0370966130 0.906172532
## 461  0.30538469 0.646491228 0.0369262043 0.906172532
## 337  0.30475435 0.647368421 0.0367563484 0.906172532
## 1341 0.30412390 0.648245614 0.0365870431 0.906172532
## 1497 0.30349333 0.649122807 0.0364182861 0.906172532
## 619  0.30286263 0.650000000 0.0362500754 0.906172532
## 919  0.30560759 0.650000000 0.0365829865 0.911904391
## 285  0.30497921 0.650877193 0.0364146919 0.911904391
## 1279 0.30435070 0.651754386 0.0362469407 0.911904391
## 281  0.30710561 0.651754386 0.0365789518 0.917653898
## 1223 0.30647947 0.652631579 0.0364111171 0.917653898
## 1275 0.30585321 0.653508772 0.0362438228 0.917653898
## 861  0.30522683 0.654385965 0.0360770668 0.917653898
## 434  0.30799438 0.654385965 0.0364075615 0.923421053
## 61   0.30737041 0.655263158 0.0362407216 0.923421053
## 425  0.30674632 0.656140351 0.0360744172 0.923421053
## 1233 0.30612212 0.657017544 0.0359086461 0.923421053
## 295  0.30549778 0.657894737 0.0357434063 0.923421053
## 1488 0.30487332 0.658771930 0.0355786957 0.923421053
## 1436 0.30424872 0.659649123 0.0354145124 0.923421053
## 582  0.30362399 0.660526316 0.0352508542 0.923421053
## 547  0.30299912 0.661403509 0.0350877193 0.923421053
## 246  0.30237411 0.662280702 0.0349251055 0.923421053
## 420  0.30174895 0.663157895 0.0347630109 0.923421053
## 366  0.30112364 0.664035088 0.0346014335 0.923421053
## 494  0.30049818 0.664912281 0.0344403713 0.923421053
## 1425 0.29987256 0.665789474 0.0342798224 0.923421053
## 368  0.29924677 0.666666667 0.0341197847 0.923421053
## 1360 0.29862083 0.667543860 0.0339602564 0.923421053
## 1512 0.29799471 0.668421053 0.0338012355 0.923421053
## 814  0.29736842 0.669298246 0.0336427200 0.923421053
## 789  0.29674196 0.670175439 0.0334847081 0.923421053
## 1222 0.29611531 0.671052632 0.0333271978 0.923421053
## 313  0.29893855 0.671052632 0.0336464883 0.929205855
## 1178 0.29831449 0.671929825 0.0334888818 0.929205855
## 1368 0.30114626 0.671929825 0.0338079385 0.935008305
## 443  0.30052483 0.672807018 0.0336502371 0.935008305
## 207  0.29990323 0.673684211 0.0334930339 0.935008305
## 1021 0.29928146 0.674561404 0.0333363272 0.935008305
## 1077 0.29865951 0.675438596 0.0331801150 0.935008305
## 1107 0.29803739 0.676315789 0.0330243956 0.935008305
## 1141 0.29741508 0.677192982 0.0328691670 0.935008305
## 610  0.29679259 0.678070175 0.0327144273 0.935008305
## 1416 0.29616991 0.678947368 0.0325601748 0.935008305
## 380  0.29554703 0.679824561 0.0324064077 0.935008305
## 199  0.29841053 0.679824561 0.0327205262 0.940828402
## 319  0.29779040 0.680701754 0.0325666599 0.940828402
## 1079 0.29717008 0.681578947 0.0324132764 0.940828402
## 856  0.29654956 0.682456140 0.0322603739 0.940828402
## 414  0.29592885 0.683333333 0.0321079506 0.940828402
## 62   0.29530794 0.684210526 0.0319560048 0.940828402
## 1094 0.29468682 0.685087719 0.0318045345 0.940828402
## 531  0.29406550 0.685964912 0.0316535382 0.940828402
## 1511 0.29344396 0.686842105 0.0315030139 0.940828402
## 60   0.29282220 0.687719298 0.0313529599 0.940828402
## 1357 0.29220022 0.688596491 0.0312033745 0.940828402
## 192  0.29157802 0.689473684 0.0310542559 0.940828402
## 211  0.29095559 0.690350877 0.0309056024 0.940828402
## 774  0.29033293 0.691228070 0.0307574123 0.940828402
## 1056 0.28971003 0.692105263 0.0306096837 0.940828402
## 810  0.28908689 0.692982456 0.0304624151 0.940828402
## 947  0.28846351 0.693859649 0.0303156046 0.940828402
## 40   0.28783987 0.694736842 0.0301692507 0.940828402
## 1346 0.28721598 0.695614035 0.0300233515 0.940828402
## 566  0.28659184 0.696491228 0.0298779054 0.940828402
## 119  0.28596743 0.697368421 0.0297329108 0.940828402
## 508  0.28534276 0.698245614 0.0295883660 0.940828402
## 352  0.28827766 0.698245614 0.0298908665 0.946666148
## 69   0.28765599 0.699122807 0.0297462117 0.946666148
## 1016 0.28703405 0.700000000 0.0296020045 0.946666148
## 507  0.28641185 0.700877193 0.0294582432 0.946666148
## 1358 0.28578938 0.701754386 0.0293149262 0.946666148
## 413  0.28516664 0.702631579 0.0291720518 0.946666148
## 714  0.28454362 0.703508772 0.0290296184 0.946666148
## 552  0.28750535 0.703508772 0.0293291630 0.952521541
## 667  0.28688544 0.704385965 0.0291866182 0.952521541
## 705  0.28626527 0.705263158 0.0290445122 0.952521541
## 1140 0.28564482 0.706140351 0.0289028435 0.952521541
## 607  0.28502409 0.707017544 0.0287616104 0.952521541
## 690  0.28440308 0.707894737 0.0286208114 0.952521541
## 741  0.28378178 0.708771930 0.0284804448 0.952521541
## 1242 0.28316019 0.709649123 0.0283405091 0.952521541
## 816  0.28253831 0.710526316 0.0282010027 0.952521541
## 1472 0.28191613 0.711403509 0.0280619240 0.952521541
## 1321 0.28129364 0.712280702 0.0279232715 0.952521541
## 1481 0.28067084 0.713157895 0.0277850436 0.952521541
## 746  0.28004773 0.714035088 0.0276472387 0.952521541
## 913  0.27942430 0.714912281 0.0275098554 0.952521541
## 541  0.27880055 0.715789474 0.0273728921 0.952521541
## 989  0.27817647 0.716666667 0.0272363472 0.952521541
## 222  0.27755207 0.717543860 0.0271002193 0.952521541
## 813  0.27692732 0.718421053 0.0269645068 0.952521541
## 1036 0.27630223 0.719298246 0.0268292082 0.952521541
## 985  0.27567680 0.720175439 0.0266943221 0.952521541
## 973  0.27505102 0.721052632 0.0265598468 0.952521541
## 328  0.27442488 0.721929825 0.0264257811 0.952521541
## 976  0.27379838 0.722807018 0.0262921232 0.952521541
## 1181 0.27317152 0.723684211 0.0261588719 0.952521541
## 1291 0.27254428 0.724561404 0.0260260255 0.952521541
## 951  0.27191667 0.725438596 0.0258935827 0.952521541
## 487  0.27128869 0.726315789 0.0257615420 0.952521541
## 918  0.27435212 0.726315789 0.0260475033 0.958394581
## 1231 0.27372763 0.727192982 0.0259153407 0.958394581
## 583  0.27310277 0.728070175 0.0257835784 0.958394581
## 191  0.27247754 0.728947368 0.0256522148 0.958394581
## 449  0.27185192 0.729824561 0.0255212486 0.958394581
## 54   0.27122592 0.730701754 0.0253906784 0.958394581
## 1043 0.27059953 0.731578947 0.0252605027 0.958394581
## 497  0.26997274 0.732456140 0.0251307200 0.958394581
## 1072 0.26934555 0.733333333 0.0250013291 0.958394581
## 780  0.26871796 0.734210526 0.0248723285 0.958394581
## 462  0.26808995 0.735087719 0.0247437167 0.958394581
## 1183 0.26746153 0.735964912 0.0246154925 0.958394581
## 1347 0.26683269 0.736842105 0.0244876543 0.958394581
## 931  0.26620342 0.737719298 0.0243602010 0.958394581
## 530  0.26557372 0.738596491 0.0242331309 0.958394581
## 648  0.26494358 0.739473684 0.0241064429 0.958394581
## 744  0.26431299 0.740350877 0.0239801355 0.958394581
## 832  0.26368196 0.741228070 0.0238542074 0.958394581
## 924  0.26305047 0.742105263 0.0237286573 0.958394581
## 1402 0.26241853 0.742982456 0.0236034837 0.958394581
## 1265 0.26178612 0.743859649 0.0234786854 0.958394581
## 661  0.26115323 0.744736842 0.0233542610 0.958394581
## 1076 0.26051987 0.745614035 0.0232302092 0.958394581
## 1339 0.25988603 0.746491228 0.0231065287 0.958394581
## 1276 0.25925170 0.747368421 0.0229832182 0.958394581
## 491  0.25861688 0.748245614 0.0228602763 0.958394581
## 915  0.25798155 0.749122807 0.0227377017 0.958394581
## 587  0.25734572 0.750000000 0.0226154932 0.958394581
## 1204 0.26053080 0.750000000 0.0228880981 0.964285269
## 676  0.26372543 0.750000000 0.0231610952 0.970193605
## 703  0.26309819 0.750877193 0.0230382619 0.970193605
## 1520 0.26247047 0.751754386 0.0229157941 0.970193605
## 1420 0.26184228 0.752631579 0.0227936903 0.970193605
## 1383 0.26121362 0.753508772 0.0226719494 0.970193605
## 110  0.26058446 0.754385965 0.0225505701 0.970193605
## 1352 0.25995482 0.755263158 0.0224295510 0.970193605
## 48   0.25932467 0.756140351 0.0223088910 0.970193605
## 927  0.25869403 0.757017544 0.0221885888 0.970193605
## 1272 0.25806287 0.757894737 0.0220686431 0.970193605
## 853  0.25743120 0.758771930 0.0219490526 0.970193605
## 769  0.25679900 0.759649123 0.0218298162 0.970193605
## 553  0.26005568 0.759649123 0.0220978199 0.976119589
## 704  0.25942788 0.760526316 0.0219784526 0.976119589
## 876  0.25879958 0.761403509 0.0218594379 0.976119589
## 1236 0.25817077 0.762280702 0.0217407744 0.976119589
## 978  0.25754144 0.763157895 0.0216224609 0.976119589
## 231  0.25691158 0.764035088 0.0215044963 0.976119589
## 39   0.25628120 0.764912281 0.0213868793 0.976119589
## 1113 0.25565028 0.765789474 0.0212696087 0.976119589
## 575  0.25501881 0.766666667 0.0211526833 0.976119589
## 1018 0.25438680 0.767543860 0.0210361019 0.976119589
## 1415 0.25375423 0.768421053 0.0209198633 0.976119589
## 112  0.25312110 0.769298246 0.0208039663 0.976119589
## 1485 0.25248741 0.770175439 0.0206884097 0.976119589
## 685  0.25185313 0.771052632 0.0205731924 0.976119589
## 131  0.25121828 0.771929825 0.0204583132 0.976119589
## 25   0.25058284 0.772807018 0.0203437709 0.976119589
## 956  0.24994680 0.773684211 0.0202295643 0.976119589
## 1172 0.24931016 0.774561404 0.0201156923 0.976119589
## 32   0.24867291 0.775438596 0.0200021537 0.976119589
## 550  0.24803505 0.776315789 0.0198889474 0.976119589
## 4    0.24739657 0.777192982 0.0197760722 0.976119589
## 504  0.24675745 0.778070175 0.0196635270 0.976119589
## 1024 0.24611770 0.778947368 0.0195513107 0.976119589
## 1103 0.24547731 0.779824561 0.0194394221 0.976119589
## 753  0.24483626 0.780701754 0.0193278601 0.976119589
## 1463 0.24419456 0.781578947 0.0192166235 0.976119589
## 327  0.24355219 0.782456140 0.0191057113 0.976119589
## 390  0.24290915 0.783333333 0.0189951224 0.976119589
## 773  0.24226542 0.784210526 0.0188848556 0.976119589
## 953  0.24162101 0.785087719 0.0187749098 0.976119589
## 782  0.24097590 0.785964912 0.0186652839 0.976119589
## 1338 0.24033009 0.786842105 0.0185559769 0.976119589
## 1217 0.23968357 0.787719298 0.0184469876 0.976119589
## 346  0.23903632 0.788596491 0.0183383150 0.976119589
## 468  0.23838835 0.789473684 0.0182299580 0.976119589
## 1032 0.23773964 0.790350877 0.0181219154 0.976119589
## 229  0.23709019 0.791228070 0.0180141863 0.976119589
## 934  0.23643998 0.792105263 0.0179067696 0.976119589
## 411  0.23578902 0.792982456 0.0177996641 0.976119589
## 182  0.23513728 0.793859649 0.0176928689 0.976119589
## 997  0.23448477 0.794736842 0.0175863829 0.976119589
## 998  0.23383147 0.795614035 0.0174802049 0.976119589
## 11   0.23317737 0.796491228 0.0173743341 0.976119589
## 288  0.23252247 0.797368421 0.0172687693 0.976119589
## 444  0.23186676 0.798245614 0.0171635096 0.976119589
## 1445 0.23121022 0.799122807 0.0170585537 0.976119589
## 1498 0.23055285 0.800000000 0.0169539009 0.976119589
## 709  0.22989465 0.800877193 0.0168495499 0.976119589
## 225  0.22923559 0.801754386 0.0167454998 0.976119589
## 26   0.22857567 0.802631579 0.0166417497 0.976119589
## 455  0.22791489 0.803508772 0.0165382983 0.976119589
## 1519 0.22725322 0.804385965 0.0164351448 0.976119589
## 715  0.23081749 0.804385965 0.0166800514 0.982063220
## 1100 0.23016180 0.805263158 0.0165767570 0.982063220
## 1422 0.22950525 0.806140351 0.0164737593 0.982063220
## 1101 0.22884785 0.807017544 0.0163710572 0.982063220
## 1063 0.22818957 0.807894737 0.0162686499 0.982063220
## 409  0.22753042 0.808771930 0.0161665362 0.982063220
## 1442 0.22687038 0.809649123 0.0160647153 0.982063220
## 1025 0.22620943 0.810526316 0.0159631861 0.982063220
## 170  0.22554758 0.811403509 0.0158619477 0.982063220
## 1322 0.22488481 0.812280702 0.0157609990 0.982063220
## 1459 0.22422111 0.813157895 0.0156603392 0.982063220
## 972  0.22355646 0.814035088 0.0155599672 0.982063220
## 1014 0.22289087 0.814912281 0.0154598820 0.982063220
## 340  0.22222431 0.815789474 0.0153600828 0.982063220
## 616  0.22155679 0.816666667 0.0152605686 0.982063220
## 1031 0.22088828 0.817543860 0.0151613384 0.982063220
## 675  0.22457700 0.817543860 0.0154001740 0.988024499
## 407  0.22391525 0.818421053 0.0153008017 0.988024499
## 791  0.22325255 0.819298246 0.0152017124 0.988024499
## 1192 0.22258889 0.820175439 0.0151029050 0.988024499
## 809  0.22192426 0.821052632 0.0150043787 0.988024499
## 1437 0.22125865 0.821929825 0.0149061325 0.988024499
## 428  0.22059205 0.822807018 0.0148081656 0.988024499
## 153  0.21992445 0.823684211 0.0147104768 0.988024499
## 1235 0.21925583 0.824561404 0.0146130655 0.988024499
## 625  0.21858619 0.825438596 0.0145159305 0.988024499
## 730  0.21791551 0.826315789 0.0144190710 0.988024499
## 1260 0.21724378 0.827192982 0.0143224862 0.988024499
## 1177 0.21657099 0.828070175 0.0142261750 0.988024499
## 293  0.21589713 0.828947368 0.0141301366 0.988024499
## 1300 0.21522218 0.829824561 0.0140343700 0.988024499
## 777  0.21454614 0.830701754 0.0139388745 0.988024499
## 1521 0.21386898 0.831578947 0.0138436490 0.988024499
## 1147 0.21319070 0.832456140 0.0137486927 0.988024499
## 986  0.21251129 0.833333333 0.0136540047 0.988024499
## 1428 0.21183072 0.834210526 0.0135595841 0.988024499
## 852  0.21114900 0.835087719 0.0134654301 0.988024499
## 1270 0.21046610 0.835964912 0.0133715418 0.988024499
## 1035 0.20978201 0.836842105 0.0132779182 0.988024499
## 647  0.20909671 0.837719298 0.0131845585 0.988024499
## 672  0.20841020 0.838596491 0.0130914619 0.988024499
## 1318 0.20772246 0.839473684 0.0129986275 0.988024499
## 771  0.20703347 0.840350877 0.0129060544 0.988024499
## 1342 0.20634322 0.841228070 0.0128137418 0.988024499
## 135  0.20565170 0.842105263 0.0127216888 0.988024499
## 1229 0.20495889 0.842982456 0.0126298946 0.988024499
## 1289 0.20426477 0.843859649 0.0125383582 0.988024499
## 322  0.20356933 0.844736842 0.0124470790 0.988024499
## 526  0.20287256 0.845614035 0.0123560560 0.988024499
## 923  0.20217443 0.846491228 0.0122652884 0.988024499
## 628  0.20147493 0.847368421 0.0121747754 0.988024499
## 618  0.20077405 0.848245614 0.0120845161 0.988024499
## 614  0.20007177 0.849122807 0.0119945097 0.988024499
## 1258 0.19936807 0.850000000 0.0119047554 0.988024499
## 1380 0.19866293 0.850877193 0.0118152524 0.988024499
## 733  0.19795634 0.851754386 0.0117259998 0.988024499
## 1034 0.19724828 0.852631579 0.0116369969 0.988024499
## 1444 0.19653873 0.853508772 0.0115482428 0.988024499
## 580  0.19582767 0.854385965 0.0114597367 0.988024499
## 1119 0.19511509 0.855263158 0.0113714778 0.988024499
## 102  0.19440096 0.856140351 0.0112834653 0.988024499
## 1501 0.19368527 0.857017544 0.0111956985 0.988024499
## 860  0.19296800 0.857894737 0.0111081764 0.988024499
## 1356 0.19224912 0.858771930 0.0110208984 0.988024499
## 378  0.19152862 0.859649123 0.0109338636 0.988024499
## 333  0.19080648 0.860526316 0.0108470712 0.988024499
## 866  0.19008268 0.861403509 0.0107605206 0.988024499
## 904  0.18935719 0.862280702 0.0106742108 0.988024499
## 331  0.18862999 0.863157895 0.0105881411 0.988024499
## 670  0.18790106 0.864035088 0.0105023107 0.988024499
## 534  0.18717039 0.864912281 0.0104167189 0.988024499
## 1075 0.18643794 0.865789474 0.0103313649 0.988024499
## 1216 0.18570370 0.866666667 0.0102462480 0.988024499
## 1153 0.18496763 0.867543860 0.0101613673 0.988024499
## 1152 0.18422973 0.868421053 0.0100767221 0.988024499
## 731  0.18348995 0.869298246 0.0099923116 0.988024499
## 347  0.18274829 0.870175439 0.0099081352 0.988024499
## 1278 0.18200471 0.871052632 0.0098241920 0.988024499
## 1106 0.18125918 0.871929825 0.0097404813 0.988024499
## 877  0.18051169 0.872807018 0.0096570023 0.988024499
## 1225 0.17976220 0.873684211 0.0095737544 0.988024499
## 1522 0.17901070 0.874561404 0.0094907367 0.988024499
## 1345 0.17825714 0.875438596 0.0094079486 0.988024499
## 1221 0.17750150 0.876315789 0.0093253892 0.988024499
## 833  0.17674376 0.877192982 0.0092430580 0.988024499
## 335  0.17598389 0.878070175 0.0091609541 0.988024499
## 674  0.17522185 0.878947368 0.0090790768 0.988024499
## 1220 0.17445762 0.879824561 0.0089974254 0.988024499
## 812  0.17369116 0.880701754 0.0089159991 0.988024499
## 546  0.17292245 0.881578947 0.0088347974 0.988024499
## 592  0.17215145 0.882456140 0.0087538193 0.988024499
## 993  0.17137813 0.883333333 0.0086730643 0.988024499
## 1353 0.17060245 0.884210526 0.0085925316 0.988024499
## 909  0.16982439 0.885087719 0.0085122206 0.988024499
## 1037 0.16904390 0.885964912 0.0084321304 0.988024499
## 665  0.16826096 0.886842105 0.0083522605 0.988024499
## 735  0.16747552 0.887719298 0.0082726101 0.988024499
## 929  0.16668755 0.888596491 0.0081931785 0.988024499
## 1136 0.16589701 0.889473684 0.0081139650 0.988024499
## 1120 0.16510387 0.890350877 0.0080349690 0.988024499
## 784  0.16430808 0.891228070 0.0079561897 0.988024499
## 1186 0.16350960 0.892105263 0.0078776265 0.988024499
## 608  0.16270840 0.892982456 0.0077992786 0.988024499
## 1432 0.16190443 0.893859649 0.0077211455 0.988024499
## 743  0.16109764 0.894736842 0.0076432263 0.988024499
## 1361 0.16028800 0.895614035 0.0075655206 0.988024499
## 342  0.15947546 0.896491228 0.0074880274 0.988024499
## 89   0.15865998 0.897368421 0.0074107463 0.988024499
## 754  0.15784150 0.898245614 0.0073336766 0.988024499
## 613  0.15701998 0.899122807 0.0072568175 0.988024499
## 350  0.16186106 0.899122807 0.0074597923 0.994003426
## 1199 0.16105588 0.900000000 0.0073827866 0.994003426
## 958  0.16024781 0.900877193 0.0073059910 0.994003426
## 834  0.15943681 0.901754386 0.0072294047 0.994003426
## 1378 0.15862284 0.902631579 0.0071530270 0.994003426
## 865  0.15780584 0.903508772 0.0070768575 0.994003426
## 1350 0.15698577 0.904385965 0.0070008953 0.994003426
## 1475 0.15616257 0.905263158 0.0069251398 0.994003426
## 1013 0.15533619 0.906140351 0.0068495905 0.994003426
## 1020 0.15450658 0.907017544 0.0067742466 0.994003426
## 693  0.15367369 0.907894737 0.0066991075 0.994003426
## 825  0.15283746 0.908771930 0.0066241726 0.994003426
## 770  0.15199783 0.909649123 0.0065494412 0.994003426
## 1097 0.15115475 0.910526316 0.0064749128 0.994003426
## 386  0.15030815 0.911403509 0.0064005866 0.994003426
## 143  0.14945797 0.912280702 0.0063264620 0.994003426
## 163  0.14860415 0.913157895 0.0062525384 0.994003426
## 1143 0.14774663 0.914035088 0.0061788152 0.994003426
## 988  0.14688533 0.914912281 0.0061052918 0.994003426
## 76   0.14602020 0.915789474 0.0060319675 0.994003426
## 332  0.14515115 0.916666667 0.0059588418 0.994003426
## 975  0.14427812 0.917543860 0.0058859139 0.994003426
## 1343 0.14340103 0.918421053 0.0058131833 0.994003426
## 1439 0.14251981 0.919298246 0.0057406495 0.994003426
## 1502 0.14163437 0.920175439 0.0056683116 0.994003426
## 538  0.14074464 0.921052632 0.0055961693 0.994003426
## 456  0.13985053 0.921929825 0.0055242218 0.994003426
## 836  0.13895195 0.922807018 0.0054524686 0.994003426
## 983  0.13804883 0.923684211 0.0053809090 0.994003426
## 1118 0.13714106 0.924561404 0.0053095425 0.994003426
## 1157 0.13622855 0.925438596 0.0052383684 0.994003426
## 412  0.13531120 0.926315789 0.0051673862 0.994003426
## 1400 0.13438892 0.927192982 0.0050965953 0.994003426
## 946  0.13346160 0.928070175 0.0050259951 0.994003426
## 855  0.13252913 0.928947368 0.0049555849 0.994003426
## 1399 0.13159141 0.929824561 0.0048853643 0.994003426
## 423  0.13064832 0.930701754 0.0048153326 0.994003426
## 323  0.12969974 0.931578947 0.0047454893 0.994003426
## 680  0.12874554 0.932456140 0.0046758337 0.994003426
## 858  0.12778561 0.933333333 0.0046063654 0.994003426
## 1112 0.12681982 0.934210526 0.0045370836 0.994003426
## 729  0.12584801 0.935087719 0.0044679879 0.994003426
## 701  0.12487007 0.935964912 0.0043990777 0.994003426
## 1071 0.12388584 0.936842105 0.0043303524 0.994003426
## 678  0.12289516 0.937719298 0.0042618114 0.994003426
## 509  0.12189789 0.938596491 0.0041934542 0.994003426
## 224  0.12089386 0.939473684 0.0041252802 0.994003426
## 653  0.11988290 0.940350877 0.0040572889 0.994003426
## 156  0.11886483 0.941228070 0.0039894797 0.994003426
## 1277 0.11783948 0.942105263 0.0039218520 0.994003426
## 176  0.11680665 0.942982456 0.0038544054 0.994003426
## 1019 0.11576614 0.943859649 0.0037871391 0.994003426
## 933  0.11471774 0.944736842 0.0037200527 0.994003426
## 787  0.11366125 0.945614035 0.0036531457 0.994003426
## 627  0.11259643 0.946491228 0.0035864175 0.994003426
## 348  0.11152304 0.947368421 0.0035198675 0.994003426
## 1398 0.11044086 0.948245614 0.0034534953 0.994003426
## 952  0.10934960 0.949122807 0.0033873002 0.994003426
## 590  0.10824901 0.950000000 0.0033212817 0.994003426
## 1137 0.10713881 0.950877193 0.0032554393 0.994003426
## 737  0.10601869 0.951754386 0.0031897725 0.994003426
## 830  0.10488835 0.952631579 0.0031242807 0.994003426
## 467  0.10374746 0.953508772 0.0030589634 0.994003426
## 593  0.10259567 0.954385965 0.0029938201 0.994003426
## 1033 0.10143262 0.955263158 0.0029288502 0.994003426
## 1073 0.10025794 0.956140351 0.0028640532 0.994003426
## 954  0.09907121 0.957017544 0.0027994286 0.994003426
## 1162 0.10638990 0.957017544 0.0029806455 1.000000000
## 794  0.10526316 0.957894737 0.0029158769 1.000000000
## 488  0.10412577 0.958771930 0.0028512803 1.000000000
## 440  0.10297738 0.959649123 0.0027868551 1.000000000
## 874  0.10181761 0.960526316 0.0027226008 1.000000000
## 1202 0.10064607 0.961403509 0.0026585169 1.000000000
## 903  0.09946233 0.962280702 0.0025946028 1.000000000
## 424  0.09826595 0.963157895 0.0025308581 1.000000000
## 506  0.09705646 0.964035088 0.0024672822 1.000000000
## 1478 0.09583337 0.964912281 0.0024038746 1.000000000
## 308  0.09459613 0.965789474 0.0023406349 1.000000000
## 502  0.09207693 0.967543860 0.0022146570 1.000000000
## 1121 0.09207693 0.967543860 0.0022146570 1.000000000
## 655  0.09079372 0.968421053 0.0021519178 1.000000000
## 529  0.08949387 0.969298246 0.0020893443 1.000000000
## 1517 0.08817664 0.970175439 0.0020269363 1.000000000
## 306  0.08684123 0.971052632 0.0019646930 1.000000000
## 1426 0.08548678 0.971929825 0.0019026141 1.000000000
## 433  0.08411238 0.972807018 0.0018406991 1.000000000
## 429  0.08271702 0.973684211 0.0017789474 1.000000000
## 651  0.08129962 0.974561404 0.0017173585 1.000000000
## 1303 0.07985901 0.975438596 0.0016559321 1.000000000
## 1110 0.07839390 0.976315789 0.0015946676 1.000000000
## 793  0.07690289 0.977192982 0.0015335645 1.000000000
## 1391 0.07538443 0.978070175 0.0014726223 1.000000000
## 738  0.07383682 0.978947368 0.0014118406 1.000000000
## 1053 0.07225821 0.979824561 0.0013512188 1.000000000
## 1054 0.07064648 0.980701754 0.0012907566 1.000000000
## 549  0.06899934 0.981578947 0.0012304534 1.000000000
## 385  0.06731416 0.982456140 0.0011703088 1.000000000
## 859  0.06558801 0.983333333 0.0011103222 1.000000000
## 505  0.06381757 0.984210526 0.0010504933 1.000000000
## 544  0.06199903 0.985087719 0.0009908215 1.000000000
## 329  0.06012802 0.985964912 0.0009313064 1.000000000
## 792  0.05819949 0.986842105 0.0008719475 1.000000000
## 831  0.05620750 0.987719298 0.0008127444 1.000000000
## 503  0.05414505 0.988596491 0.0007536966 1.000000000
## 1180 0.05200374 0.989473684 0.0006948036 1.000000000
## 1117 0.04977340 0.990350877 0.0006360650 1.000000000
## 752  0.04744146 0.991228070 0.0005774803 1.000000000
## 591  0.04499213 0.992105263 0.0005190491 1.000000000
## 1200 0.04240505 0.992982456 0.0004607709 1.000000000
## 1462 0.03965326 0.993859649 0.0004026453 1.000000000
## 1397 0.03669974 0.994736842 0.0003446717 1.000000000
## 511  0.03349114 0.995614035 0.0002868499 1.000000000
## 532  0.02994557 0.996491228 0.0002291792 1.000000000
## 1198 0.02592513 0.997368421 0.0001716594 1.000000000
## 304  0.02116085 0.998245614 0.0001142898 1.000000000
## 689  0.01495809 0.999122807 0.0000570702 1.000000000
## 977         NaN 1.000000000 0.0000000000 1.000000000
## 
## 
## [[1]]$optres
## [[1]]$optres$Group1
##                Score        CI
## SENS           0.741  0.7-0.78
## SPEC           0.742 0.72-0.77
## MCC            0.434      <NA>
## Informedness   0.483      <NA>
## PREC           0.496 0.46-0.54
## NPV            0.893 0.87-0.91
## FPR            0.258      <NA>
## F1             0.594      <NA>
## TP           289.000      <NA>
## FP           294.000      <NA>
## TN           846.000      <NA>
## FN           101.000      <NA>
## AUC-ROC        0.830  0.8-0.86
## AUC-PR         0.660      <NA>
## AUC-PRG        0.200      <NA>
## 
## 
## [[1]]$stdres
## [[1]]$stdres$Group1
##                Score        CI
## SENS           0.623 0.57-0.67
## SPEC           0.845 0.82-0.86
## MCC            0.457      <NA>
## Informedness   0.468      <NA>
## PREC           0.579 0.53-0.62
## NPV            0.868 0.85-0.89
## FPR            0.155      <NA>
## F1             0.600      <NA>
## TP           243.000      <NA>
## FP           177.000      <NA>
## TN           963.000      <NA>
## FN           147.000      <NA>
## AUC-ROC        0.830  0.8-0.86
## AUC-PR         0.660      <NA>
## AUC-PRG        0.200      <NA>
## 
## 
## 
## [[2]]
## [[2]]$roc

## 
## [[2]]$proc

## 
## [[2]]$prg

## 
## [[2]]$cc

## 
## [[2]]$probs
## [[2]]$probs$Group1
##            one        zero  obs  Group TP TN FP FN      SENS       SPEC
## 35 0.991334617 0.008665383  one Group1  1 28  0  8 0.1111111 1.00000000
## 32 0.957602561 0.042397439  one Group1  2 28  0  7 0.2222222 1.00000000
## 10 0.957107484 0.042892516 zero Group1  2 27  1  7 0.2222222 0.96428571
## 34 0.919023335 0.080976665  one Group1  3 27  1  6 0.3333333 0.96428571
## 36 0.841058135 0.158941865  one Group1  4 27  1  5 0.4444444 0.96428571
## 37 0.819295526 0.180704474  one Group1  5 27  1  4 0.5555556 0.96428571
## 31 0.773961544 0.226038456  one Group1  6 27  1  3 0.6666667 0.96428571
## 30 0.739828587 0.260171413  one Group1  7 27  1  2 0.7777778 0.96428571
## 23 0.655557096 0.344442904 zero Group1  7 26  2  2 0.7777778 0.92857143
## 17 0.612685144 0.387314856 zero Group1  7 25  3  2 0.7777778 0.89285714
## 13 0.586073697 0.413926303 zero Group1  7 24  4  2 0.7777778 0.85714286
## 29 0.568772078 0.431227922  one Group1  8 24  4  1 0.8888889 0.85714286
## 5  0.462022752 0.537977248 zero Group1  8 23  5  1 0.8888889 0.82142857
## 6  0.447962821 0.552037179 zero Group1  8 22  6  1 0.8888889 0.78571429
## 11 0.436008632 0.563991368 zero Group1  8 21  7  1 0.8888889 0.75000000
## 28 0.405484170 0.594515830 zero Group1  8 20  8  1 0.8888889 0.71428571
## 27 0.359380752 0.640619248 zero Group1  8 19  9  1 0.8888889 0.67857143
## 24 0.343648851 0.656351149 zero Group1  8 18 10  1 0.8888889 0.64285714
## 8  0.313999951 0.686000049 zero Group1  8 17 11  1 0.8888889 0.60714286
## 1  0.261837333 0.738162667 zero Group1  8 16 12  1 0.8888889 0.57142857
## 21 0.260512680 0.739487320 zero Group1  8 15 13  1 0.8888889 0.53571429
## 7  0.260289758 0.739710242 zero Group1  8 14 14  1 0.8888889 0.50000000
## 3  0.231763825 0.768236175 zero Group1  8 13 15  1 0.8888889 0.46428571
## 18 0.213581562 0.786418438 zero Group1  8 12 16  1 0.8888889 0.42857143
## 33 0.153305918 0.846694082  one Group1  9 12 16  0 1.0000000 0.42857143
## 20 0.143787906 0.856212094 zero Group1  9 11 17  0 1.0000000 0.39285714
## 22 0.101784959 0.898215041 zero Group1  9 10 18  0 1.0000000 0.35714286
## 26 0.056842644 0.943157356 zero Group1  9  9 19  0 1.0000000 0.32142857
## 4  0.051589221 0.948410779 zero Group1  9  8 20  0 1.0000000 0.28571429
## 14 0.046612773 0.953387227 zero Group1  9  7 21  0 1.0000000 0.25000000
## 9  0.033179991 0.966820009 zero Group1  9  6 22  0 1.0000000 0.21428571
## 12 0.023176096 0.976823904 zero Group1  9  5 23  0 1.0000000 0.17857143
## 25 0.012902946 0.987097054 zero Group1  9  4 24  0 1.0000000 0.14285714
## 19 0.012062857 0.987937143 zero Group1  9  3 25  0 1.0000000 0.10714286
## 16 0.008465705 0.991534295 zero Group1  9  2 26  0 1.0000000 0.07142857
## 2  0.003131147 0.996868853 zero Group1  9  1 27  0 1.0000000 0.03571429
## 15 0.002522487 0.997477513 zero Group1  9  0 28  0 1.0000000 0.00000000
##    Informedness      PREC       NPV      MARK        F1        MCC        FPR
## 35   0.11111111 1.0000000 0.7777778 0.7777778 0.2000000 0.29397237 0.00000000
## 32   0.22222222 1.0000000 0.8000000 0.8000000 0.3636364 0.42163702 0.00000000
## 10   0.18650794 0.6666667 0.7941176 0.4607843 0.3333333 0.29315513 0.03571429
## 34   0.29761905 0.7500000 0.8181818 0.5681818 0.4615385 0.41121981 0.03571429
## 36   0.40873016 0.8000000 0.8437500 0.6437500 0.5714286 0.51295228 0.03571429
## 37   0.51984127 0.8333333 0.8709677 0.7043011 0.6666667 0.60508245 0.03571429
## 31   0.63095238 0.8571429 0.9000000 0.7571429 0.7500000 0.69117370 0.03571429
## 30   0.74206349 0.8750000 0.9310345 0.8060345 0.8235294 0.77338785 0.03571429
## 23   0.70634921 0.7777778 0.9285714 0.7063492 0.7777778 0.70634921 0.07142857
## 17   0.67063492 0.7000000 0.9259259 0.6259259 0.7368421 0.64789489 0.10714286
## 13   0.63492063 0.6363636 0.9230769 0.5594406 0.7000000 0.59598688 0.14285714
## 29   0.74603175 0.6666667 0.9600000 0.6266667 0.7619048 0.68374939 0.14285714
## 5    0.71031746 0.6153846 0.9583333 0.5737179 0.7272727 0.63837440 0.17857143
## 6    0.67460317 0.5714286 0.9565217 0.5279503 0.6956522 0.59678887 0.21428571
## 11   0.63888889 0.5333333 0.9545455 0.4878788 0.6666667 0.55830130 0.25000000
## 28   0.60317460 0.5000000 0.9523810 0.4523810 0.6400000 0.52236453 0.28571429
## 27   0.56746032 0.4705882 0.9500000 0.4205882 0.6153846 0.48853570 0.32142857
## 24   0.53174603 0.4444444 0.9473684 0.3918129 0.5925926 0.45644817 0.35714286
## 8    0.49603175 0.4210526 0.9444444 0.3654971 0.5714286 0.42579121 0.39285714
## 1    0.46031746 0.4000000 0.9411765 0.3411765 0.5517241 0.39629470 0.42857143
## 21   0.42460317 0.3809524 0.9375000 0.3184524 0.5333333 0.36771714 0.46428571
## 7    0.38888889 0.3636364 0.9333333 0.2969697 0.5161290 0.33983557 0.50000000
## 3    0.35317460 0.3478261 0.9285714 0.2763975 0.5000000 0.31243653 0.53571429
## 18   0.31746032 0.3333333 0.9230769 0.2564103 0.4848485 0.28530700 0.57142857
## 33   0.42857143 0.3600000 1.0000000 0.3600000 0.5294118 0.39279220 0.57142857
## 20   0.39285714 0.3461538 1.0000000 0.3461538 0.5142857 0.36876688 0.60714286
## 22   0.35714286 0.3333333 1.0000000 0.3333333 0.5000000 0.34503278 0.64285714
## 26   0.32142857 0.3214286 1.0000000 0.3214286 0.4864865 0.32142857 0.67857143
## 4    0.28571429 0.3103448 1.0000000 0.3103448 0.4736842 0.29777500 0.71428571
## 14   0.25000000 0.3000000 1.0000000 0.3000000 0.4615385 0.27386128 0.75000000
## 9    0.21428571 0.2903226 1.0000000 0.2903226 0.4500000 0.24942330 0.78571429
## 12   0.17857143 0.2812500 1.0000000 0.2812500 0.4390244 0.22410536 0.82142857
## 25   0.14285714 0.2727273 1.0000000 0.2727273 0.4285714 0.19738551 0.85714286
## 19   0.10714286 0.2647059 1.0000000 0.2647059 0.4186047 0.16840827 0.89285714
## 16   0.07142857 0.2571429 1.0000000 0.2571429 0.4090909 0.13552619 0.92857143
## 2    0.03571429 0.2500000 1.0000000 0.2500000 0.4000000 0.09449112 0.96428571
## 15   0.00000000 0.2432432 0.0000000       NaN 0.3913043        NaN 1.00000000
##             PG         RG
## 35 1.000000000 0.00000000
## 32 1.000000000 0.00000000
## 10 0.373015873 0.00000000
## 34 0.502232143 0.03968254
## 36 0.588571429 0.11816578
## 37 0.649801587 0.22927690
## 31 0.695335277 0.37301587
## 30 0.730468750 0.54938272
## 23 0.549382716 0.54938272
## 17 0.422500000 0.54938272
## 13 0.330578512 0.54938272
## 29 0.373015873 0.75837743
## 5  0.302620456 0.75837743
## 6  0.247813411 0.75837743
## 11 0.204444444 0.75837743
## 28 0.169642857 0.75837743
## 27 0.141374197 0.75837743
## 24 0.118165785 0.75837743
## 8  0.098931539 0.75837743
## 1  0.082857143 0.75837743
## 21 0.069322967 0.75837743
## 7  0.057851240 0.75837743
## 3  0.048069133 0.75837743
## 18 0.039682540 0.75837743
## 33 0.055542857 1.00000000
## 20 0.047073119 1.00000000
## 22 0.039682540 1.00000000
## 26 0.033208819 1.00000000
## 4  0.027518261 1.00000000
## 14 0.022500000 1.00000000
## 9  0.018061543 1.00000000
## 12 0.014125279 1.00000000
## 25 0.010625738 1.00000000
## 19 0.007507415 1.00000000
## 16 0.004723032 1.00000000
## 2  0.002232143 1.00000000
## 15 0.000000000 1.00000000
## 
## 
## [[2]]$optres
## [[2]]$optres$Group1
##               Score        CI
## SENS          0.889 0.57-0.98
## SPEC          0.857 0.69-0.94
## MCC           0.684      <NA>
## Informedness  0.746      <NA>
## PREC          0.667 0.39-0.86
## NPV           0.960  0.8-0.99
## FPR           0.143      <NA>
## F1            0.762      <NA>
## TP            8.000      <NA>
## FP            4.000      <NA>
## TN           24.000      <NA>
## FN            1.000      <NA>
## AUC-ROC       0.900 0.76-1.04
## AUC-PR        0.670      <NA>
## AUC-PRG       0.470      <NA>
## 
## 
## [[2]]$stdres
## [[2]]$stdres$Group1
##               Score        CI
## SENS          0.889 0.57-0.98
## SPEC          0.857 0.69-0.94
## MCC           0.684      <NA>
## Informedness  0.746      <NA>
## PREC          0.667 0.39-0.86
## NPV           0.960  0.8-0.99
## FPR           0.143      <NA>
## F1            0.762      <NA>
## TP            8.000      <NA>
## FP            4.000      <NA>
## TN           24.000      <NA>
## FN            1.000      <NA>
## AUC-ROC       0.900 0.76-1.04
## AUC-PR        0.670      <NA>
## AUC-PRG       0.470      <NA>